pub enum MapEntryActions {
Seq(SeqEntryActions),
Unseq(UnseqEntryActions),
}
Expand description
Wrapper type for entry actions, which can be sequenced or unsequenced.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for EntryActions
impl Clone for EntryActions
Source§fn clone(&self) -> EntryActions
fn clone(&self) -> EntryActions
Returns a duplicate of the value. Read more
1.0.0 · 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 EntryActions
impl Debug for EntryActions
Source§impl<'de> Deserialize<'de> for EntryActions
impl<'de> Deserialize<'de> for EntryActions
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<SeqEntryActions> for EntryActions
impl From<SeqEntryActions> for EntryActions
Source§fn from(entry_actions: SeqEntryActions) -> Self
fn from(entry_actions: SeqEntryActions) -> Self
Converts to this type from the input type.
Source§impl From<UnseqEntryActions> for EntryActions
impl From<UnseqEntryActions> for EntryActions
Source§fn from(entry_actions: UnseqEntryActions) -> Self
fn from(entry_actions: UnseqEntryActions) -> Self
Converts to this type from the input type.
Source§impl Hash for EntryActions
impl Hash for EntryActions
Source§impl Ord for EntryActions
impl Ord for EntryActions
Source§fn cmp(&self, other: &EntryActions) -> Ordering
fn cmp(&self, other: &EntryActions) -> Ordering
1.21.0 · 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 PartialEq for EntryActions
impl PartialEq for EntryActions
Source§impl PartialOrd for EntryActions
impl PartialOrd for EntryActions
Source§impl Serialize for EntryActions
impl Serialize for EntryActions
impl Eq for EntryActions
impl StructuralPartialEq for EntryActions
Auto Trait Implementations§
impl Freeze for EntryActions
impl RefUnwindSafe for EntryActions
impl Send for EntryActions
impl Sync for EntryActions
impl Unpin for EntryActions
impl UnwindSafe for EntryActions
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