pub enum DiscussionUnlockedDiscussionState {
Open,
}
Expand description
DiscussionUnlockedDiscussionState
JSON schema
{
"type": "string",
"enum": [
"open"
]
}
Variants§
Open
Trait Implementations§
Source§impl Clone for DiscussionUnlockedDiscussionState
impl Clone for DiscussionUnlockedDiscussionState
Source§fn clone(&self) -> DiscussionUnlockedDiscussionState
fn clone(&self) -> DiscussionUnlockedDiscussionState
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<'de> Deserialize<'de> for DiscussionUnlockedDiscussionState
impl<'de> Deserialize<'de> for DiscussionUnlockedDiscussionState
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 From<&DiscussionUnlockedDiscussionState> for DiscussionUnlockedDiscussionState
impl From<&DiscussionUnlockedDiscussionState> for DiscussionUnlockedDiscussionState
Source§fn from(value: &DiscussionUnlockedDiscussionState) -> Self
fn from(value: &DiscussionUnlockedDiscussionState) -> Self
Converts to this type from the input type.
Source§impl Ord for DiscussionUnlockedDiscussionState
impl Ord for DiscussionUnlockedDiscussionState
Source§fn cmp(&self, other: &DiscussionUnlockedDiscussionState) -> Ordering
fn cmp(&self, other: &DiscussionUnlockedDiscussionState) -> 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 DiscussionUnlockedDiscussionState
impl PartialEq for DiscussionUnlockedDiscussionState
Source§fn eq(&self, other: &DiscussionUnlockedDiscussionState) -> bool
fn eq(&self, other: &DiscussionUnlockedDiscussionState) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for DiscussionUnlockedDiscussionState
impl PartialOrd for DiscussionUnlockedDiscussionState
Source§impl TryFrom<&str> for DiscussionUnlockedDiscussionState
impl TryFrom<&str> for DiscussionUnlockedDiscussionState
impl Copy for DiscussionUnlockedDiscussionState
impl Eq for DiscussionUnlockedDiscussionState
impl StructuralPartialEq for DiscussionUnlockedDiscussionState
Auto Trait Implementations§
impl Freeze for DiscussionUnlockedDiscussionState
impl RefUnwindSafe for DiscussionUnlockedDiscussionState
impl Send for DiscussionUnlockedDiscussionState
impl Sync for DiscussionUnlockedDiscussionState
impl Unpin for DiscussionUnlockedDiscussionState
impl UnwindSafe for DiscussionUnlockedDiscussionState
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