pub struct BmsTableList {
pub listes: Vec<BmsTableInfo>,
}Expand description
Wrapper type for the list of BMS difficulty tables.
Transparently serialized as an array: serialization/deserialization behaves the same as the internal Vec<BmsTableInfo>, resulting in a JSON array rather than an object.
Fields§
§listes: Vec<BmsTableInfo>List of entries
Trait Implementations§
Source§impl Clone for BmsTableList
impl Clone for BmsTableList
Source§fn clone(&self) -> BmsTableList
fn clone(&self) -> BmsTableList
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 BmsTableList
impl Debug for BmsTableList
Source§impl<'de> Deserialize<'de> for BmsTableList
impl<'de> Deserialize<'de> for BmsTableList
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 BmsTableList
Source§impl PartialEq for BmsTableList
impl PartialEq for BmsTableList
Source§fn eq(&self, other: &BmsTableList) -> bool
fn eq(&self, other: &BmsTableList) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BmsTableList
impl Serialize for BmsTableList
impl StructuralPartialEq for BmsTableList
Auto Trait Implementations§
impl Freeze for BmsTableList
impl RefUnwindSafe for BmsTableList
impl Send for BmsTableList
impl Sync for BmsTableList
impl Unpin for BmsTableList
impl UnsafeUnpin for BmsTableList
impl UnwindSafe for BmsTableList
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