pub struct InteractionData {
pub name: Option<String>,
pub data_type: Option<InteractionDataType>,
pub resolved: Resolved,
}Expand description
Interaction data structure
Fields§
§name: Option<String>Interaction name
data_type: Option<InteractionDataType>Data type
resolved: ResolvedResolved data
Implementations§
Trait Implementations§
Source§impl Clone for InteractionData
impl Clone for InteractionData
Source§fn clone(&self) -> InteractionData
fn clone(&self) -> InteractionData
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 InteractionData
impl Debug for InteractionData
Source§impl<'de> Deserialize<'de> for InteractionData
impl<'de> Deserialize<'de> for InteractionData
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
Auto Trait Implementations§
impl Freeze for InteractionData
impl RefUnwindSafe for InteractionData
impl Send for InteractionData
impl Sync for InteractionData
impl Unpin for InteractionData
impl UnsafeUnpin for InteractionData
impl UnwindSafe for InteractionData
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