pub enum ItemInteractionsCurrentOrExample {
Current(ItemInteractionsCurrent),
Example(ItemInteractionsExample),
}Expand description
[ItemInteraction]s constructed from parameters derived from at least some
example state.
Variants§
Current(ItemInteractionsCurrent)
[ItemInteraction]s constructed from parameters derived from fully
known state.
Example(ItemInteractionsExample)
[ItemInteraction]s constructed from parameters derived from at least
some example state.
Trait Implementations§
Source§impl Clone for ItemInteractionsCurrentOrExample
impl Clone for ItemInteractionsCurrentOrExample
Source§fn clone(&self) -> ItemInteractionsCurrentOrExample
fn clone(&self) -> ItemInteractionsCurrentOrExample
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<'de> Deserialize<'de> for ItemInteractionsCurrentOrExample
impl<'de> Deserialize<'de> for ItemInteractionsCurrentOrExample
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<ItemInteractionsCurrent> for ItemInteractionsCurrentOrExample
impl From<ItemInteractionsCurrent> for ItemInteractionsCurrentOrExample
Source§fn from(item_interactions_current: ItemInteractionsCurrent) -> Self
fn from(item_interactions_current: ItemInteractionsCurrent) -> Self
Converts to this type from the input type.
Source§impl From<ItemInteractionsExample> for ItemInteractionsCurrentOrExample
impl From<ItemInteractionsExample> for ItemInteractionsCurrentOrExample
Source§fn from(item_interactions_example: ItemInteractionsExample) -> Self
fn from(item_interactions_example: ItemInteractionsExample) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ItemInteractionsCurrentOrExample
impl PartialEq for ItemInteractionsCurrentOrExample
Source§fn eq(&self, other: &ItemInteractionsCurrentOrExample) -> bool
fn eq(&self, other: &ItemInteractionsCurrentOrExample) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ItemInteractionsCurrentOrExample
impl StructuralPartialEq for ItemInteractionsCurrentOrExample
Auto Trait Implementations§
impl Freeze for ItemInteractionsCurrentOrExample
impl RefUnwindSafe for ItemInteractionsCurrentOrExample
impl Send for ItemInteractionsCurrentOrExample
impl Sync for ItemInteractionsCurrentOrExample
impl Unpin for ItemInteractionsCurrentOrExample
impl UnwindSafe for ItemInteractionsCurrentOrExample
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