pub struct KordItem {
pub path: PathBuf,
pub frequency_space: [f32; 8192],
pub label: u128,
}Expand description
A single kord sample.
This is a single sample of a kord, which is a set of notes played together.
Fields§
§path: PathBufThe path to the sample.
frequency_space: [f32; 8192]The frequency space of the sample.
label: u128The label of the sample.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for KordItem
impl Send for KordItem
impl Sync for KordItem
impl Unpin for KordItem
impl UnwindSafe for KordItem
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