pub enum PlaybackSettings {
Pattern {
idx: u8,
should_loop: bool,
},
Order {
idx: u16,
should_loop: bool,
},
}Variants§
Trait Implementations§
Source§impl Clone for PlaybackSettings
impl Clone for PlaybackSettings
Source§fn clone(&self) -> PlaybackSettings
fn clone(&self) -> PlaybackSettings
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 PlaybackSettings
impl Debug for PlaybackSettings
impl Copy for PlaybackSettings
Auto Trait Implementations§
impl Freeze for PlaybackSettings
impl RefUnwindSafe for PlaybackSettings
impl Send for PlaybackSettings
impl Sync for PlaybackSettings
impl Unpin for PlaybackSettings
impl UnwindSafe for PlaybackSettings
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