pub struct BmsTableData {
pub charts: Vec<ChartItem>,
}Expand description
BMS table data.
Contains only the chart array. Parsing supports both a plain array and { charts: [...] } input forms.
Fields§
§charts: Vec<ChartItem>Charts
Trait Implementations§
Source§impl Clone for BmsTableData
impl Clone for BmsTableData
Source§fn clone(&self) -> BmsTableData
fn clone(&self) -> BmsTableData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BmsTableData
impl Debug for BmsTableData
Source§impl<'de> Deserialize<'de> for BmsTableData
impl<'de> Deserialize<'de> for BmsTableData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for BmsTableData
Source§impl PartialEq for BmsTableData
impl PartialEq for BmsTableData
Source§fn eq(&self, other: &BmsTableData) -> bool
fn eq(&self, other: &BmsTableData) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BmsTableData
impl Serialize for BmsTableData
impl StructuralPartialEq for BmsTableData
Auto Trait Implementations§
impl Freeze for BmsTableData
impl RefUnwindSafe for BmsTableData
impl Send for BmsTableData
impl Sync for BmsTableData
impl Unpin for BmsTableData
impl UnsafeUnpin for BmsTableData
impl UnwindSafe for BmsTableData
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