pub struct MappingEntry {
pub key: EntryKey,
pub value: Guarded<AbstractFragment>,
}Expand description
One mapping entry: the key and its guarded value alternatives.
Fields§
§key: EntryKeyThe entry key.
value: Guarded<AbstractFragment>The guarded value alternatives for this key.
Trait Implementations§
Source§impl Clone for MappingEntry
impl Clone for MappingEntry
Source§fn clone(&self) -> MappingEntry
fn clone(&self) -> MappingEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MappingEntry
impl Debug for MappingEntry
impl Eq for MappingEntry
Source§impl PartialEq for MappingEntry
impl PartialEq for MappingEntry
impl StructuralPartialEq for MappingEntry
Auto Trait Implementations§
impl !Send for MappingEntry
impl !Sync for MappingEntry
impl Freeze for MappingEntry
impl RefUnwindSafe for MappingEntry
impl Unpin for MappingEntry
impl UnsafeUnpin for MappingEntry
impl UnwindSafe for MappingEntry
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§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.