pub enum ReplayGain {
Off,
Track,
Album,
Auto,
}Expand description
Replay gain mode
Variants§
Trait Implementations§
Source§impl Clone for ReplayGain
impl Clone for ReplayGain
Source§fn clone(&self) -> ReplayGain
fn clone(&self) -> ReplayGain
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 ReplayGain
impl Debug for ReplayGain
Source§impl Display for ReplayGain
impl Display for ReplayGain
Source§impl FromStr for ReplayGain
impl FromStr for ReplayGain
Source§type Err = ParseError
type Err = ParseError
The associated error which can be returned from parsing.
Source§fn from_str(s: &str) -> Result<ReplayGain, ParseError>
fn from_str(s: &str) -> Result<ReplayGain, ParseError>
Parses a string
s to return a value of this type. Read moreSource§impl PartialEq for ReplayGain
impl PartialEq for ReplayGain
impl Copy for ReplayGain
impl StructuralPartialEq for ReplayGain
Auto Trait Implementations§
impl Freeze for ReplayGain
impl RefUnwindSafe for ReplayGain
impl Send for ReplayGain
impl Sync for ReplayGain
impl Unpin for ReplayGain
impl UnwindSafe for ReplayGain
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