pub struct Wavetable {
pub samples: Vec<f32>,
}Expand description
Wavetable: a single cycle of audio, interpolated at playback.
Fields§
§samples: Vec<f32>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Wavetable
impl RefUnwindSafe for Wavetable
impl Send for Wavetable
impl Sync for Wavetable
impl Unpin for Wavetable
impl UnsafeUnpin for Wavetable
impl UnwindSafe for Wavetable
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