pub enum StoryInteraction {
StoryInteraction(StoryInteraction),
}Variants§
StoryInteraction(StoryInteraction)
Represents interaction with a story
Trait Implementations§
Source§impl Clone for StoryInteraction
impl Clone for StoryInteraction
Source§fn clone(&self) -> StoryInteraction
fn clone(&self) -> StoryInteraction
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 StoryInteraction
impl Debug for StoryInteraction
Source§impl<'de> Deserialize<'de> for StoryInteraction
impl<'de> Deserialize<'de> for StoryInteraction
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 PartialEq for StoryInteraction
impl PartialEq for StoryInteraction
Source§impl Serialize for StoryInteraction
impl Serialize for StoryInteraction
impl StructuralPartialEq for StoryInteraction
Auto Trait Implementations§
impl Freeze for StoryInteraction
impl RefUnwindSafe for StoryInteraction
impl Send for StoryInteraction
impl Sync for StoryInteraction
impl Unpin for StoryInteraction
impl UnwindSafe for StoryInteraction
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