#[repr(C)]pub struct FLACStreaminfo {
pub samplerate: c_int,
pub channels: c_int,
pub bps: c_int,
pub max_blocksize: c_int,
pub max_framesize: c_int,
pub samples: i64,
}
Fields§
§samplerate: c_int
§channels: c_int
§bps: c_int
§max_blocksize: c_int
§max_framesize: c_int
§samples: i64
Trait Implementations§
Source§impl Clone for FLACStreaminfo
impl Clone for FLACStreaminfo
Source§fn clone(&self) -> FLACStreaminfo
fn clone(&self) -> FLACStreaminfo
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 FLACStreaminfo
impl Debug for FLACStreaminfo
impl Copy for FLACStreaminfo
Auto Trait Implementations§
impl Freeze for FLACStreaminfo
impl RefUnwindSafe for FLACStreaminfo
impl Send for FLACStreaminfo
impl Sync for FLACStreaminfo
impl Unpin for FLACStreaminfo
impl UnwindSafe for FLACStreaminfo
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