pub enum WebsiteType {
Profile,
Blog,
Work,
Home,
Other,
}
Variants§
Trait Implementations§
Source§impl Clone for WebsiteType
impl Clone for WebsiteType
Source§fn clone(&self) -> WebsiteType
fn clone(&self) -> WebsiteType
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 WebsiteType
impl Debug for WebsiteType
Source§impl<'de> Deserialize<'de> for WebsiteType
impl<'de> Deserialize<'de> for WebsiteType
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 Hash for WebsiteType
impl Hash for WebsiteType
Source§impl Ord for WebsiteType
impl Ord for WebsiteType
Source§fn cmp(&self, other: &WebsiteType) -> Ordering
fn cmp(&self, other: &WebsiteType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for WebsiteType
impl PartialEq for WebsiteType
Source§impl PartialOrd for WebsiteType
impl PartialOrd for WebsiteType
Source§impl Serialize for WebsiteType
impl Serialize for WebsiteType
impl Eq for WebsiteType
impl StructuralPartialEq for WebsiteType
Auto Trait Implementations§
impl Freeze for WebsiteType
impl RefUnwindSafe for WebsiteType
impl Send for WebsiteType
impl Sync for WebsiteType
impl Unpin for WebsiteType
impl UnwindSafe for WebsiteType
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