pub struct StoryInteractionTypeView {
pub chosen_reaction_type: Option<ReactionType>,
}
Expand description
A view of the story
Fields§
§chosen_reaction_type: Option<ReactionType>
Type of the reaction that was chosen by the viewer; may be null if none
Trait Implementations§
Source§impl Clone for StoryInteractionTypeView
impl Clone for StoryInteractionTypeView
Source§fn clone(&self) -> StoryInteractionTypeView
fn clone(&self) -> StoryInteractionTypeView
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 StoryInteractionTypeView
impl Debug for StoryInteractionTypeView
Source§impl Default for StoryInteractionTypeView
impl Default for StoryInteractionTypeView
Source§fn default() -> StoryInteractionTypeView
fn default() -> StoryInteractionTypeView
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StoryInteractionTypeView
impl<'de> Deserialize<'de> for StoryInteractionTypeView
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 StoryInteractionTypeView
impl PartialEq for StoryInteractionTypeView
Source§impl Serialize for StoryInteractionTypeView
impl Serialize for StoryInteractionTypeView
impl StructuralPartialEq for StoryInteractionTypeView
Auto Trait Implementations§
impl Freeze for StoryInteractionTypeView
impl RefUnwindSafe for StoryInteractionTypeView
impl Send for StoryInteractionTypeView
impl Sync for StoryInteractionTypeView
impl Unpin for StoryInteractionTypeView
impl UnwindSafe for StoryInteractionTypeView
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