pub struct Context<'a, 'b, 'c, 'd> {
pub nframes: usize,
pub output: &'a mut [&'b mut [f32]],
pub input: &'c [&'d [f32]],
}
Fields
nframes: usize
output: &'a mut [&'b mut [f32]]
input: &'c [&'d [f32]]
Trait Implementations
Auto Trait Implementations
impl<'a, 'b, 'c, 'd> RefUnwindSafe for Context<'a, 'b, 'c, 'd>
impl<'a, 'b, 'c, 'd> Send for Context<'a, 'b, 'c, 'd>
impl<'a, 'b, 'c, 'd> Sync for Context<'a, 'b, 'c, 'd>
impl<'a, 'b, 'c, 'd> Unpin for Context<'a, 'b, 'c, 'd>where
'b: 'a,
'd: 'c,
impl<'a, 'b, 'c, 'd> !UnwindSafe for Context<'a, 'b, 'c, 'd>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more