pub struct FmodTag {
pub _type: TagType,
pub data_type: TagDataType,
pub name: String,
pub updated: bool,
/* private fields */
}
Expand description
Structure describing a piece of tag data.
Fields§
§_type: TagType
[r] The type of this tag.
data_type: TagDataType
[r] The type of data that this tag contains
name: String
[r] The name of this tag i.e. “TITLE”, “ARTIST” etc.
updated: bool
[r] True if this tag has been updated since last being accessed with
Sound::get_tag
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FmodTag
impl RefUnwindSafe for FmodTag
impl !Send for FmodTag
impl !Sync for FmodTag
impl Unpin for FmodTag
impl UnwindSafe for FmodTag
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