pub struct Mapping(/* private fields */);Expand description
Key-value mapping
Implementations§
Source§impl Mapping
impl Mapping
pub fn serialize_into(&self, out: BytesMut) -> BytesMut
Sourcepub fn parse_frame(input: &[u8]) -> IResult<&[u8], Self, MappingParseError>
pub fn parse_frame(input: &[u8]) -> IResult<&[u8], Self, MappingParseError>
Parse Mapping from input, returning rest of input and parsed mapping.
Trait Implementations§
Source§impl IntoIterator for Mapping
impl IntoIterator for Mapping
impl Eq for Mapping
impl StructuralPartialEq for Mapping
Auto Trait Implementations§
impl Freeze for Mapping
impl RefUnwindSafe for Mapping
impl Send for Mapping
impl Sync for Mapping
impl Unpin for Mapping
impl UnwindSafe for Mapping
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.