[−][src]Struct ffav_sys::AVReplayGain
ReplayGain information (see http://wiki.hydrogenaudio.org/index.php?title=ReplayGain_1.0_specification). The size of this struct is a part of the public ABI.
Fields
track_gain: i32Track replay gain in microbels (divide by 100000 to get the value in dB). Should be set to INT32_MIN when unknown.
track_peak: u32Peak track amplitude, with 100000 representing full scale (but values may overflow). 0 when unknown.
album_gain: i32Same as track_gain, but for the whole album.
album_peak: u32Same as track_peak, but for the whole album,
Trait Implementations
impl Clone for AVReplayGain[src]
fn clone(&self) -> AVReplayGain[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for AVReplayGain[src]
impl Debug for AVReplayGain[src]
impl Eq for AVReplayGain[src]
impl PartialEq<AVReplayGain> for AVReplayGain[src]
fn eq(&self, other: &AVReplayGain) -> bool[src]
fn ne(&self, other: &AVReplayGain) -> bool[src]
impl StructuralEq for AVReplayGain[src]
impl StructuralPartialEq for AVReplayGain[src]
Auto Trait Implementations
impl RefUnwindSafe for AVReplayGain
impl Send for AVReplayGain
impl Sync for AVReplayGain
impl Unpin for AVReplayGain
impl UnwindSafe for AVReplayGain
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,