pub enum SinkStatus {
Enabled,
Paused,
Disabled,
}
Expand description
Variants§
Trait Implementations§
Source§impl Clone for SinkStatus
impl Clone for SinkStatus
Source§fn clone(&self) -> SinkStatus
fn clone(&self) -> SinkStatus
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 SinkStatus
impl Debug for SinkStatus
Source§impl Default for SinkStatus
impl Default for SinkStatus
Source§fn default() -> SinkStatus
fn default() -> SinkStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SinkStatus
impl<'de> Deserialize<'de> for SinkStatus
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 SinkStatus
impl Display for SinkStatus
Source§impl Hash for SinkStatus
impl Hash for SinkStatus
Source§impl Ord for SinkStatus
impl Ord for SinkStatus
Source§fn cmp(&self, other: &SinkStatus) -> Ordering
fn cmp(&self, other: &SinkStatus) -> 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 SinkStatus
impl PartialEq for SinkStatus
Source§impl PartialOrd for SinkStatus
impl PartialOrd for SinkStatus
Source§impl Serialize for SinkStatus
impl Serialize for SinkStatus
impl Copy for SinkStatus
impl Eq for SinkStatus
impl StructuralPartialEq for SinkStatus
Auto Trait Implementations§
impl Freeze for SinkStatus
impl RefUnwindSafe for SinkStatus
impl Send for SinkStatus
impl Sync for SinkStatus
impl Unpin for SinkStatus
impl UnwindSafe for SinkStatus
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