pub enum MapEntries {
Seq(SeqEntries),
Unseq(UnseqEntries),
}Expand description
Wrapper type for entries, which can be sequenced or unsequenced.
Variants§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Entries
impl<'de> Deserialize<'de> for Entries
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
impl Eq for Entries
Source§impl From<BTreeMap<Vec<u8>, SeqValue>> for Entries
impl From<BTreeMap<Vec<u8>, SeqValue>> for Entries
Source§fn from(entries: SeqEntries) -> Self
fn from(entries: SeqEntries) -> Self
Converts to this type from the input type.
Source§impl From<BTreeMap<Vec<u8>, Vec<u8>>> for Entries
impl From<BTreeMap<Vec<u8>, Vec<u8>>> for Entries
Source§fn from(entries: UnseqEntries) -> Self
fn from(entries: UnseqEntries) -> Self
Converts to this type from the input type.
Source§impl Ord for Entries
impl Ord for Entries
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for Entries
impl PartialOrd for Entries
impl StructuralPartialEq for Entries
Source§impl TryFrom<QueryResponse> for MapEntries
impl TryFrom<QueryResponse> for MapEntries
Source§type Error = TryFromError
type Error = TryFromError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for Entries
impl RefUnwindSafe for Entries
impl Send for Entries
impl Sync for Entries
impl Unpin for Entries
impl UnsafeUnpin for Entries
impl UnwindSafe for Entries
Blanket Implementations§
impl<A> Actor for A
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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