pub struct BmsTableRaw {
pub header_json_url: Url,
pub header_raw: String,
pub data_json_url: Url,
pub data_raw: String,
}Expand description
完整的原始 JSON 字符串集合。
Fields§
§header_json_url: UrlAvailable on crate feature
scraper only.头部 JSON 的完整地址
header_raw: String原始表头 JSON 字符串
data_json_url: UrlAvailable on crate feature
scraper only.谱面数据 JSON 的完整地址
data_raw: String原始谱面数据 JSON 字符串
Trait Implementations§
Source§impl<'de> Deserialize<'de> for BmsTableRaw
impl<'de> Deserialize<'de> for BmsTableRaw
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
Auto Trait Implementations§
impl Freeze for BmsTableRaw
impl RefUnwindSafe for BmsTableRaw
impl Send for BmsTableRaw
impl Sync for BmsTableRaw
impl Unpin for BmsTableRaw
impl UnwindSafe for BmsTableRaw
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