pub enum ListingStatus {
Claimed,
Unclaimed,
Pending,
Suppressed,
Duplicate,
Unknown,
}Expand description
Status label for a listing profile.
Variants§
Claimed
The listing is claimed or verified.
Unclaimed
The listing is not claimed.
Pending
The listing is pending verification or publication.
Suppressed
The listing is suppressed or hidden.
Duplicate
The listing is a duplicate.
Unknown
The status is unknown.
Trait Implementations§
Source§impl Clone for ListingStatus
impl Clone for ListingStatus
Source§fn clone(&self) -> ListingStatus
fn clone(&self) -> ListingStatus
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 moreSource§impl Debug for ListingStatus
impl Debug for ListingStatus
Source§impl Hash for ListingStatus
impl Hash for ListingStatus
Source§impl Ord for ListingStatus
impl Ord for ListingStatus
Source§fn cmp(&self, other: &ListingStatus) -> Ordering
fn cmp(&self, other: &ListingStatus) -> Ordering
1.21.0 (const: unstable) · 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 ListingStatus
impl PartialEq for ListingStatus
Source§fn eq(&self, other: &ListingStatus) -> bool
fn eq(&self, other: &ListingStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ListingStatus
impl PartialOrd for ListingStatus
impl Copy for ListingStatus
impl Eq for ListingStatus
impl StructuralPartialEq for ListingStatus
Auto Trait Implementations§
impl Freeze for ListingStatus
impl RefUnwindSafe for ListingStatus
impl Send for ListingStatus
impl Sync for ListingStatus
impl Unpin for ListingStatus
impl UnsafeUnpin for ListingStatus
impl UnwindSafe for ListingStatus
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