Enum twilight_model::channel::thread::AutoArchiveDuration
source · pub enum AutoArchiveDuration {
Hour,
Day,
ThreeDays,
Week,
Unknown {
value: u16,
},
}Variants§
Implementations§
Trait Implementations§
source§impl Clone for AutoArchiveDuration
impl Clone for AutoArchiveDuration
source§fn clone(&self) -> AutoArchiveDuration
fn clone(&self) -> AutoArchiveDuration
Returns a copy 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 AutoArchiveDuration
impl Debug for AutoArchiveDuration
source§impl<'de> Deserialize<'de> for AutoArchiveDuration
impl<'de> Deserialize<'de> for AutoArchiveDuration
source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
source§impl From<AutoArchiveDuration> for Duration
impl From<AutoArchiveDuration> for Duration
source§fn from(value: AutoArchiveDuration) -> Self
fn from(value: AutoArchiveDuration) -> Self
Converts to this type from the input type.
source§impl From<u16> for AutoArchiveDuration
impl From<u16> for AutoArchiveDuration
source§impl Hash for AutoArchiveDuration
impl Hash for AutoArchiveDuration
source§impl Ord for AutoArchiveDuration
impl Ord for AutoArchiveDuration
source§fn cmp(&self, other: &AutoArchiveDuration) -> Ordering
fn cmp(&self, other: &AutoArchiveDuration) -> 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<AutoArchiveDuration> for AutoArchiveDuration
impl PartialEq<AutoArchiveDuration> for AutoArchiveDuration
source§fn eq(&self, other: &AutoArchiveDuration) -> bool
fn eq(&self, other: &AutoArchiveDuration) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<AutoArchiveDuration> for AutoArchiveDuration
impl PartialOrd<AutoArchiveDuration> for AutoArchiveDuration
source§fn partial_cmp(&self, other: &AutoArchiveDuration) -> Option<Ordering>
fn partial_cmp(&self, other: &AutoArchiveDuration) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more