Enum mpd::status::ReplayGain
[−]
[src]
pub enum ReplayGain { Off, Track, Album, Auto, }
Replay gain mode
Variants
Off
off
Track
track
Album
album
Auto
auto
Trait Implementations
impl Debug for ReplayGain
[src]
impl Clone for ReplayGain
[src]
fn clone(&self) -> ReplayGain
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl Copy for ReplayGain
[src]
impl PartialEq for ReplayGain
[src]
fn eq(&self, __arg_0: &ReplayGain) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0
This method tests for !=
.
impl Encodable for ReplayGain
[src]
fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), __S::Error>
Serialize a value using an Encoder
.
impl Decodable for ReplayGain
[src]
fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<ReplayGain, __D::Error>
Deserialize a value using a Decoder
.
impl FromStr for ReplayGain
[src]
type Err = ParseError
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<ReplayGain, ParseError>
Parses a string s
to return a value of this type. Read more