pub struct CUETrack {
pub title: String,
pub performer: Option<String>,
pub flags: Option<TrackFlags>,
pub isrc: Option<String>,
pub post_gap: Option<CUETimeStamp>,
pub pre_gap: Option<CUETimeStamp>,
pub songwriter: Option<String>,
pub indices: Vec<(u8, CUETimeStamp)>,
pub comments: Vec<String>,
}Expand description
struct describing a CUE track
Fields§
§title: StringThe title of the track
performer: Option<String>The performer of the track
flags: Option<TrackFlags>The sub code flags of the track
isrc: Option<String>The ISRC of the track
post_gap: Option<CUETimeStamp>The post gap of the track
pre_gap: Option<CUETimeStamp>The pre gap of the track
songwriter: Option<String>The songwriter of the track
indices: Vec<(u8, CUETimeStamp)>The index values of the track
comments: Vec<String>REM comments of the track
Implementations§
Trait Implementations§
impl Eq for CUETrack
impl StructuralPartialEq for CUETrack
Auto Trait Implementations§
impl Freeze for CUETrack
impl RefUnwindSafe for CUETrack
impl Send for CUETrack
impl Sync for CUETrack
impl Unpin for CUETrack
impl UnwindSafe for CUETrack
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