pub struct Metadata<'a> {
pub title: Cow<'a, str>,
pub title_unicode: Cow<'a, str>,
pub artist: Cow<'a, str>,
pub artist_unicode: Cow<'a, str>,
pub creator: Cow<'a, str>,
pub version: Cow<'a, str>,
pub source: Cow<'a, str>,
pub tags: Cow<'a, str>,
pub beatmap_id: i32,
pub beatmap_set_id: i32,
}
Expand description
Metadata section
Fields§
§title: Cow<'a, str>
§title_unicode: Cow<'a, str>
§artist: Cow<'a, str>
§artist_unicode: Cow<'a, str>
§creator: Cow<'a, str>
§version: Cow<'a, str>
§source: Cow<'a, str>
§beatmap_id: i32
§beatmap_set_id: i32
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Metadata<'a>
impl<'a> RefUnwindSafe for Metadata<'a>
impl<'a> Send for Metadata<'a>
impl<'a> Sync for Metadata<'a>
impl<'a> Unpin for Metadata<'a>
impl<'a> UnwindSafe for Metadata<'a>
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