pub struct SoundStreamHead {
pub stream_format: SoundFormat,
pub playback_format: SoundFormat,
pub num_samples_per_block: u16,
pub latency_seek: i16,
}
Fields§
§stream_format: SoundFormat
§playback_format: SoundFormat
§num_samples_per_block: u16
§latency_seek: i16
Trait Implementations§
Source§impl Clone for SoundStreamHead
impl Clone for SoundStreamHead
Source§fn clone(&self) -> SoundStreamHead
fn clone(&self) -> SoundStreamHead
Returns a copy 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 SoundStreamHead
impl Debug for SoundStreamHead
Source§impl PartialEq for SoundStreamHead
impl PartialEq for SoundStreamHead
impl Eq for SoundStreamHead
impl StructuralPartialEq for SoundStreamHead
Auto Trait Implementations§
impl Freeze for SoundStreamHead
impl RefUnwindSafe for SoundStreamHead
impl Send for SoundStreamHead
impl Sync for SoundStreamHead
impl Unpin for SoundStreamHead
impl UnwindSafe for SoundStreamHead
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