pub enum TrackElement {
Label,
Fx,
Volume,
Mute,
Solo,
RecordArm,
Clip(usize),
}Variants§
Implementations§
Source§impl TrackElement
impl TrackElement
pub fn move_right(self, num_clips: usize) -> Self
pub fn move_left(self) -> Self
Trait Implementations§
Source§impl Clone for TrackElement
impl Clone for TrackElement
Source§fn clone(&self) -> TrackElement
fn clone(&self) -> TrackElement
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 TrackElement
impl Debug for TrackElement
Source§impl PartialEq for TrackElement
impl PartialEq for TrackElement
impl Copy for TrackElement
impl Eq for TrackElement
impl StructuralPartialEq for TrackElement
Auto Trait Implementations§
impl Freeze for TrackElement
impl RefUnwindSafe for TrackElement
impl Send for TrackElement
impl Sync for TrackElement
impl Unpin for TrackElement
impl UnsafeUnpin for TrackElement
impl UnwindSafe for TrackElement
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