pub struct StereoSample<S>{
pub left: S,
pub right: S,
}
Expand description
Represents AY stereo sample with left
and right
channel samples
Fields§
§left: S
§right: S
Trait Implementations§
Auto Trait Implementations§
impl<S> Freeze for StereoSample<S>where
S: Freeze,
impl<S> RefUnwindSafe for StereoSample<S>where
S: RefUnwindSafe,
impl<S> Send for StereoSample<S>where
S: Send,
impl<S> Sync for StereoSample<S>where
S: Sync,
impl<S> Unpin for StereoSample<S>where
S: Unpin,
impl<S> UnwindSafe for StereoSample<S>where
S: UnwindSafe,
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