pub struct MetadataGap {
pub field: String,
pub candidates: Option<u64>,
}Expand description
Missing metadata that prevented evaluating a supported filter for candidates.
Fields§
§field: StringProvider-defined filter field with missing values.
candidates: Option<u64>Candidates omitted while producing this page, if the provider can count them. Counts for different fields may refer to the same candidates.
Trait Implementations§
Source§impl Clone for MetadataGap
impl Clone for MetadataGap
Source§fn clone(&self) -> MetadataGap
fn clone(&self) -> MetadataGap
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MetadataGap
impl Debug for MetadataGap
Source§impl<'de> Deserialize<'de> for MetadataGap
impl<'de> Deserialize<'de> for MetadataGap
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MetadataGap
impl RefUnwindSafe for MetadataGap
impl Send for MetadataGap
impl Sync for MetadataGap
impl Unpin for MetadataGap
impl UnsafeUnpin for MetadataGap
impl UnwindSafe for MetadataGap
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more