pub enum IntransitiveActivitySubtypes {
IntransitiveActivity(IntransitiveActivity),
Arrive(Arrive),
Question(Question),
}Variants§
Trait Implementations§
Source§impl Clone for IntransitiveActivitySubtypes
impl Clone for IntransitiveActivitySubtypes
Source§fn clone(&self) -> IntransitiveActivitySubtypes
fn clone(&self) -> IntransitiveActivitySubtypes
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 IntransitiveActivitySubtypes
impl Debug for IntransitiveActivitySubtypes
Source§impl<'de> Deserialize<'de> for IntransitiveActivitySubtypes
impl<'de> Deserialize<'de> for IntransitiveActivitySubtypes
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<IntransitiveActivitySubtypes> for IntransitiveActivity
impl From<IntransitiveActivitySubtypes> for IntransitiveActivity
Source§fn from(value: IntransitiveActivitySubtypes) -> Self
fn from(value: IntransitiveActivitySubtypes) -> Self
Converts to this type from the input type.
Source§impl PartialEq for IntransitiveActivitySubtypes
impl PartialEq for IntransitiveActivitySubtypes
Source§fn eq(&self, other: &IntransitiveActivitySubtypes) -> bool
fn eq(&self, other: &IntransitiveActivitySubtypes) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IntransitiveActivitySubtypes
Auto Trait Implementations§
impl Freeze for IntransitiveActivitySubtypes
impl RefUnwindSafe for IntransitiveActivitySubtypes
impl Send for IntransitiveActivitySubtypes
impl Sync for IntransitiveActivitySubtypes
impl Unpin for IntransitiveActivitySubtypes
impl UnwindSafe for IntransitiveActivitySubtypes
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