pub struct Position {
pub pattern_index: u8,
pub pattern: u8,
pub row: u8,
pub samples: u64,
}
Expand description
The return values from XMContext::get_position()
.
Fields§
§pattern_index: u8
Pattern index in the POT (pattern order table)
pattern: u8
Pattern number
row: u8
Row number
samples: u64
Total number of generated samples
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Position
impl RefUnwindSafe for Position
impl Send for Position
impl Sync for Position
impl Unpin for Position
impl UnwindSafe for Position
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