pub enum VisitorType {
New,
Returning,
Unknown,
}Variants§
Trait Implementations§
Source§impl Clone for VisitorType
impl Clone for VisitorType
Source§fn clone(&self) -> VisitorType
fn clone(&self) -> VisitorType
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 VisitorType
Source§impl Debug for VisitorType
impl Debug for VisitorType
Source§impl<'de> Deserialize<'de> for VisitorType
impl<'de> Deserialize<'de> for VisitorType
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
impl Eq for VisitorType
Source§impl PartialEq for VisitorType
impl PartialEq for VisitorType
Source§fn eq(&self, other: &VisitorType) -> bool
fn eq(&self, other: &VisitorType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for VisitorType
Auto Trait Implementations§
impl Freeze for VisitorType
impl RefUnwindSafe for VisitorType
impl Send for VisitorType
impl Sync for VisitorType
impl Unpin for VisitorType
impl UnsafeUnpin for VisitorType
impl UnwindSafe for VisitorType
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