pub enum ThreadUnsubscribeStatus {
NotLoaded,
NotSubscribed,
Unsubscribed,
}Expand description
ThreadUnsubscribeStatus
JSON schema
{
"type": "string",
"enum": [
"notLoaded",
"notSubscribed",
"unsubscribed"
]
}Variants§
Trait Implementations§
Source§impl Clone for ThreadUnsubscribeStatus
impl Clone for ThreadUnsubscribeStatus
Source§fn clone(&self) -> ThreadUnsubscribeStatus
fn clone(&self) -> ThreadUnsubscribeStatus
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 ThreadUnsubscribeStatus
impl Debug for ThreadUnsubscribeStatus
Source§impl<'de> Deserialize<'de> for ThreadUnsubscribeStatus
impl<'de> Deserialize<'de> for ThreadUnsubscribeStatus
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 Display for ThreadUnsubscribeStatus
impl Display for ThreadUnsubscribeStatus
Source§impl FromStr for ThreadUnsubscribeStatus
impl FromStr for ThreadUnsubscribeStatus
Source§impl Hash for ThreadUnsubscribeStatus
impl Hash for ThreadUnsubscribeStatus
Source§impl Ord for ThreadUnsubscribeStatus
impl Ord for ThreadUnsubscribeStatus
Source§fn cmp(&self, other: &ThreadUnsubscribeStatus) -> Ordering
fn cmp(&self, other: &ThreadUnsubscribeStatus) -> 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 ThreadUnsubscribeStatus
impl PartialEq for ThreadUnsubscribeStatus
Source§fn eq(&self, other: &ThreadUnsubscribeStatus) -> bool
fn eq(&self, other: &ThreadUnsubscribeStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ThreadUnsubscribeStatus
impl PartialOrd for ThreadUnsubscribeStatus
Source§impl Serialize for ThreadUnsubscribeStatus
impl Serialize for ThreadUnsubscribeStatus
Source§impl TryFrom<&String> for ThreadUnsubscribeStatus
impl TryFrom<&String> for ThreadUnsubscribeStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for ThreadUnsubscribeStatus
impl TryFrom<&str> for ThreadUnsubscribeStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for ThreadUnsubscribeStatus
impl TryFrom<String> for ThreadUnsubscribeStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for ThreadUnsubscribeStatus
impl Eq for ThreadUnsubscribeStatus
impl StructuralPartialEq for ThreadUnsubscribeStatus
Auto Trait Implementations§
impl Freeze for ThreadUnsubscribeStatus
impl RefUnwindSafe for ThreadUnsubscribeStatus
impl Send for ThreadUnsubscribeStatus
impl Sync for ThreadUnsubscribeStatus
impl Unpin for ThreadUnsubscribeStatus
impl UnsafeUnpin for ThreadUnsubscribeStatus
impl UnwindSafe for ThreadUnsubscribeStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.