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 · 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
Source§impl PartialEq for BmsTableData
impl PartialEq for BmsTableData
Source§impl Serialize for BmsTableData
impl Serialize for BmsTableData
impl Eq 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 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.