pub struct Config {
pub sep_artist: &'static str,
pub parse_multiple_artists: bool,
}
Fields§
§sep_artist: &'static str
The separator used when parsing and formatting multiple artists in metadata formats that does not explicitly support multiple artists (i.e. artist is a single string separated by the separator)
parse_multiple_artists: bool
Parse multiple artists from a single string using the separator specified above
Implementations§
Source§impl Config
impl Config
pub fn sep_artist(self, sep: &'static str) -> Self
pub fn parse_multiple_artists(self, parse_multiple_artists: bool) -> Self
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnwindSafe for Config
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