pub struct Audio {Show 15 fields
pub title: String,
pub artist: String,
pub album_artist: String,
pub album: String,
pub cd: String,
pub release: String,
pub track_number: String,
pub track_count: String,
pub genre: String,
pub comment: String,
pub composer: String,
pub orig_artist: String,
pub copyright: String,
pub url: String,
pub encoded_by: String,
/* private fields */
}Expand description
An Audio Buffer (48kHz/48,000hz).
Fields§
§title: StringTitle
artist: StringArtist / Author
album_artist: StringAlbum Artist
album: StringAlbum
cd: StringCD
release: StringRelease Date / Release Year
track_number: StringTrack #
track_count: StringTrack Count
genre: StringGenre
comment: StringComment
composer: StringComposer
orig_artist: StringOriginal artist
copyright: StringCopyright / License
url: StringArtist Website / URL
encoded_by: StringEncoded By
Implementations§
Auto Trait Implementations§
impl Freeze for Audio
impl RefUnwindSafe for Audio
impl Send for Audio
impl Sync for Audio
impl Unpin for Audio
impl UnwindSafe for Audio
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