pub enum InteractType {
Enter,
Follow,
Share,
SpecialFollow,
MutualFollow,
Like,
Other(i32),
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for InteractType
impl Clone for InteractType
Source§fn clone(&self) -> InteractType
fn clone(&self) -> InteractType
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 moreimpl Copy for InteractType
Source§impl Debug for InteractType
impl Debug for InteractType
impl Eq for InteractType
Source§impl PartialEq for InteractType
impl PartialEq for InteractType
Source§fn eq(&self, other: &InteractType) -> bool
fn eq(&self, other: &InteractType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InteractType
Auto Trait Implementations§
impl Freeze for InteractType
impl RefUnwindSafe for InteractType
impl Send for InteractType
impl Sync for InteractType
impl Unpin for InteractType
impl UnsafeUnpin for InteractType
impl UnwindSafe for InteractType
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