pub struct Chart {
pub tags: MsdFile,
pub song_info: SongMetadata,
pub chart_data: ChartData,
pub path: PathBuf,
}Expand description
A complete SM chart, with song metadata and the chart data.
Fields§
all metadata on this chart. All keys are UPPERCASED!.
song_info: SongMetadataInfo about the song this chart belonged to.
chart_data: ChartDataInfo about the actual chart itself.
path: PathBufWhere this chart was loaded from on disk.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Chart
impl RefUnwindSafe for Chart
impl Send for Chart
impl Sync for Chart
impl Unpin for Chart
impl UnsafeUnpin for Chart
impl UnwindSafe for Chart
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