pub struct DelayedTrigger {
pub tick: u8,
pub period: u16,
pub sample: u8,
}Expand description
Stores the note/sample/effect details of an EDy-delayed trigger so we can fire it at the requested tick inside the same row.
Fields§
§tick: u8§period: u16§sample: u8Trait Implementations§
Source§impl Clone for DelayedTrigger
impl Clone for DelayedTrigger
Source§fn clone(&self) -> DelayedTrigger
fn clone(&self) -> DelayedTrigger
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 moreSource§impl Debug for DelayedTrigger
impl Debug for DelayedTrigger
Source§impl Default for DelayedTrigger
impl Default for DelayedTrigger
Source§fn default() -> DelayedTrigger
fn default() -> DelayedTrigger
Returns the “default value” for a type. Read more
impl Copy for DelayedTrigger
Auto Trait Implementations§
impl Freeze for DelayedTrigger
impl RefUnwindSafe for DelayedTrigger
impl Send for DelayedTrigger
impl Sync for DelayedTrigger
impl Unpin for DelayedTrigger
impl UnsafeUnpin for DelayedTrigger
impl UnwindSafe for DelayedTrigger
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