pub enum CompressorResponse {
Normal,
Fast,
}Expand description
How quickly the compressor recovers. Manual: “The FAST mode … makes the Compressor recover quicker after being triggered.”
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for CompressorResponse
impl Clone for CompressorResponse
Source§fn clone(&self) -> CompressorResponse
fn clone(&self) -> CompressorResponse
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 moreimpl Copy for CompressorResponse
Source§impl Debug for CompressorResponse
The variant name, which is what --set takes. ⚠️ Not Display, which is
the panel’s own word for the state and may differ.
impl Debug for CompressorResponse
The variant name, which is what --set takes. ⚠️ Not Display, which is
the panel’s own word for the state and may differ.
Source§impl Default for CompressorResponse
impl Default for CompressorResponse
Source§fn default() -> CompressorResponse
fn default() -> CompressorResponse
Returns the “default value” for a type. Read more
Source§impl Display for CompressorResponse
impl Display for CompressorResponse
impl Eq for CompressorResponse
Source§impl Hash for CompressorResponse
impl Hash for CompressorResponse
Source§impl Ord for CompressorResponse
impl Ord for CompressorResponse
Source§fn cmp(&self, other: &CompressorResponse) -> Ordering
fn cmp(&self, other: &CompressorResponse) -> 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
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl Packed for CompressorResponse
impl Packed for CompressorResponse
Source§const MAX_BITS: u32 = 1
const MAX_BITS: u32 = 1
Bits the widest value of this type occupies. Used to check statically that it
fits its slot.
Source§const DECODE_BITS: u32 = 1
const DECODE_BITS: u32 = 1
Widest slot this type can decode without losing bits on re-encoding. Read more
Source§const CONTROL: ControlKind = crate::fields::ControlKind::Toggle
const CONTROL: ControlKind = crate::fields::ControlKind::Toggle
Which panel control this value is, for a caller building an interface over the
field registry. Read more
Source§type Error = !
type Error = !
Why a bit pattern is not a valid value.
Infallible when every pattern is.Source§impl PartialEq for CompressorResponse
impl PartialEq for CompressorResponse
Source§impl PartialOrd for CompressorResponse
impl PartialOrd for CompressorResponse
impl StructuralPartialEq for CompressorResponse
Auto Trait Implementations§
impl Freeze for CompressorResponse
impl RefUnwindSafe for CompressorResponse
impl Send for CompressorResponse
impl Sync for CompressorResponse
impl Unpin for CompressorResponse
impl UnsafeUnpin for CompressorResponse
impl UnwindSafe for CompressorResponse
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,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.