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
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
Source§impl PartialOrd for Entries
impl PartialOrd 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.
impl Eq for Entries
impl StructuralPartialEq for Entries
Auto Trait Implementations§
impl Freeze for Entries
impl RefUnwindSafe for Entries
impl Send for Entries
impl Sync for Entries
impl Unpin for Entries
impl UnwindSafe for Entries
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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