pub struct StemResult {
pub vocals: Vec<f32>,
pub drums: Vec<f32>,
pub bass: Vec<f32>,
pub other: Vec<f32>,
}Fields§
§vocals: Vec<f32>§drums: Vec<f32>§bass: Vec<f32>§other: Vec<f32>Trait Implementations§
Source§impl Clone for StemResult
impl Clone for StemResult
Source§fn clone(&self) -> StemResult
fn clone(&self) -> StemResult
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 moreAuto Trait Implementations§
impl Freeze for StemResult
impl RefUnwindSafe for StemResult
impl Send for StemResult
impl Sync for StemResult
impl Unpin for StemResult
impl UnwindSafe for StemResult
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