pub enum Tag {
Show 26 variants
Artist,
ArtistSort,
Album,
AlbumSort,
AlbumArtist,
AlbumSortOrder,
Title,
Track,
Name,
Genre,
Date,
Composer,
Performer,
Conductor,
Work,
Grouping,
Comment,
Disc,
Label,
MusicbrainzArtistId,
MusicbrainzAlbumId,
MusicbrainzAlbumArtistId,
MusicbrainzTrackId,
MusicbrainzReleaseTrackId,
MusicbrainzWorkId,
Any,
}
Expand description
Track tags
Variants§
Artist
ArtistSort
Album
AlbumSort
AlbumArtist
AlbumSortOrder
Title
Track
Name
Genre
Date
Composer
Performer
Conductor
Work
Grouping
Comment
Disc
Label
MusicbrainzArtistId
MusicbrainzAlbumId
MusicbrainzAlbumArtistId
MusicbrainzTrackId
MusicbrainzReleaseTrackId
MusicbrainzWorkId
Any
Trait Implementations§
Source§impl ToFilterExpr for Tag
impl ToFilterExpr for Tag
Source§fn equals<T: ToString>(self, s: T) -> FilterExpr
fn equals<T: ToString>(self, s: T) -> FilterExpr
Tag equals
Source§fn contains<T: ToString>(self, s: T) -> FilterExpr
fn contains<T: ToString>(self, s: T) -> FilterExpr
Tag contains
impl Copy for Tag
Auto Trait Implementations§
impl Freeze for Tag
impl RefUnwindSafe for Tag
impl Send for Tag
impl Sync for Tag
impl Unpin for Tag
impl UnwindSafe for Tag
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more