pub enum DelayCharacter {
Normal,
Analog,
}Expand description
Which of the two delay lines is running.
Both Stage manuals give the pair by name: “There are two different delay modes, the normal (‘non-analog’) mode, and the Analog Mode … In Analog Mode the pitch of any sounding repeats is altered if the tempo is changed.”
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for DelayCharacter
impl Clone for DelayCharacter
Source§fn clone(&self) -> DelayCharacter
fn clone(&self) -> DelayCharacter
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 DelayCharacter
Source§impl Debug for DelayCharacter
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 DelayCharacter
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 DelayCharacter
impl Default for DelayCharacter
Source§fn default() -> DelayCharacter
fn default() -> DelayCharacter
Returns the “default value” for a type. Read more
Source§impl Display for DelayCharacter
impl Display for DelayCharacter
impl Eq for DelayCharacter
Source§impl Hash for DelayCharacter
impl Hash for DelayCharacter
Source§impl Ord for DelayCharacter
impl Ord for DelayCharacter
Source§fn cmp(&self, other: &DelayCharacter) -> Ordering
fn cmp(&self, other: &DelayCharacter) -> 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 DelayCharacter
impl Packed for DelayCharacter
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 DelayCharacter
impl PartialEq for DelayCharacter
Source§impl PartialOrd for DelayCharacter
impl PartialOrd for DelayCharacter
impl StructuralPartialEq for DelayCharacter
Auto Trait Implementations§
impl Freeze for DelayCharacter
impl RefUnwindSafe for DelayCharacter
impl Send for DelayCharacter
impl Sync for DelayCharacter
impl Unpin for DelayCharacter
impl UnsafeUnpin for DelayCharacter
impl UnwindSafe for DelayCharacter
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.