pub enum StrippedFragmentRef<'a, M> {
Value(&'a Value<M>),
Entry(&'a Entry<M>),
Key(&'a SmallString<[u8; 16]>),
}
Variants
Value(&'a Value<M>)
Entry(&'a Entry<M>)
Key(&'a SmallString<[u8; 16]>)
Implementations
sourceimpl<'a, M> StrippedFragmentRef<'a, M>
impl<'a, M> StrippedFragmentRef<'a, M>
sourceimpl<'a, M> StrippedFragmentRef<'a, M>
impl<'a, M> StrippedFragmentRef<'a, M>
pub fn sub_fragments(&self) -> SubFragments<'a, M>ⓘNotable traits for SubFragments<'a, M>impl<'a, M> Iterator for SubFragments<'a, M> type Item = FragmentRef<'a, M>;
Trait Implementations
sourceimpl<'a, M> Clone for StrippedFragmentRef<'a, M>
impl<'a, M> Clone for StrippedFragmentRef<'a, M>
sourcefn clone(&self) -> StrippedFragmentRef<'a, M>
fn clone(&self) -> StrippedFragmentRef<'a, M>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl<'a, M> Copy for StrippedFragmentRef<'a, M>
Auto Trait Implementations
impl<'a, M> RefUnwindSafe for StrippedFragmentRef<'a, M>where
M: RefUnwindSafe,
impl<'a, M> Send for StrippedFragmentRef<'a, M>where
M: Sync,
impl<'a, M> Sync for StrippedFragmentRef<'a, M>where
M: Sync,
impl<'a, M> Unpin for StrippedFragmentRef<'a, M>
impl<'a, M> UnwindSafe for StrippedFragmentRef<'a, M>where
M: RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more