pub struct OggVData {
pub raw_bytes: Vec<u8>,
pub ch: i32,
pub sps2: i32,
pub smp_num: i32,
}Expand description
Ogg/Vorbis voice data
Fields§
§raw_bytes: Vec<u8>Raw Ogg/Vorbis data
ch: i32Channel number
sps2: i32Samples per second
smp_num: i32Number of samples
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OggVData
impl RefUnwindSafe for OggVData
impl Send for OggVData
impl Sync for OggVData
impl Unpin for OggVData
impl UnsafeUnpin for OggVData
impl UnwindSafe for OggVData
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