pub struct SoundEnvelopePoint {
pub sample: u32,
pub left_volume: f32,
pub right_volume: f32,
}Fields§
§sample: u32§left_volume: f32§right_volume: f32Trait Implementations§
Source§impl Clone for SoundEnvelopePoint
impl Clone for SoundEnvelopePoint
Source§fn clone(&self) -> SoundEnvelopePoint
fn clone(&self) -> SoundEnvelopePoint
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 moreSource§impl Debug for SoundEnvelopePoint
impl Debug for SoundEnvelopePoint
Source§impl PartialEq for SoundEnvelopePoint
impl PartialEq for SoundEnvelopePoint
impl StructuralPartialEq for SoundEnvelopePoint
Auto Trait Implementations§
impl Freeze for SoundEnvelopePoint
impl RefUnwindSafe for SoundEnvelopePoint
impl Send for SoundEnvelopePoint
impl Sync for SoundEnvelopePoint
impl Unpin for SoundEnvelopePoint
impl UnwindSafe for SoundEnvelopePoint
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