pub struct BmsTable {
pub name: String,
pub symbol: String,
pub header_url: Url,
pub data_url: Url,
pub course: Vec<Vec<CourseInfo>>,
pub scores: Vec<ScoreItem>,
}Expand description
BMS难度表数据,看这一个就够了
Fields§
§name: String表格名称,如 “Satellite”
symbol: String表格符号,如 “sl”
header_url: Url表格头文件的相对URL,如 “header.json”
data_url: Url分数数据文件的相对URL,如 “score.json”
course: Vec<Vec<CourseInfo>>课程信息数组,每个元素是一个课程组的数组
scores: Vec<ScoreItem>分数数据
Trait Implementations§
impl StructuralPartialEq for BmsTable
Auto Trait Implementations§
impl Freeze for BmsTable
impl RefUnwindSafe for BmsTable
impl Send for BmsTable
impl Sync for BmsTable
impl Unpin for BmsTable
impl UnwindSafe for BmsTable
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