pub enum ExtendedScanValues {
Submitted,
Skipped,
Incomplete,
Complete,
}Variants§
Trait Implementations§
Source§impl Debug for ExtendedScanValues
impl Debug for ExtendedScanValues
Source§impl Described<ElasticMeta> for ExtendedScanValues
impl Described<ElasticMeta> for ExtendedScanValues
Source§fn metadata() -> Descriptor<ElasticMeta>
fn metadata() -> Descriptor<ElasticMeta>
Get self description of this type
Source§impl<'de> Deserialize<'de> for ExtendedScanValues
impl<'de> Deserialize<'de> for ExtendedScanValues
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
Source§impl Display for ExtendedScanValues
impl Display for ExtendedScanValues
Source§impl FromStr for ExtendedScanValues
impl FromStr for ExtendedScanValues
Source§impl Serialize for ExtendedScanValueswhere
Self: Display,
impl Serialize for ExtendedScanValueswhere
Self: Display,
Auto Trait Implementations§
impl Freeze for ExtendedScanValues
impl RefUnwindSafe for ExtendedScanValues
impl Send for ExtendedScanValues
impl Sync for ExtendedScanValues
impl Unpin for ExtendedScanValues
impl UnwindSafe for ExtendedScanValues
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more