pub struct BmsTableRaw {
pub header_json_url: Url,
pub header_raw: String,
pub data_json_url: Url,
pub data_raw: String,
}Expand description
Complete set of original JSON strings.
Fields§
§header_json_url: UrlAvailable on crate feature
scraper only.Full URL of the header JSON
header_raw: StringRaw header JSON string
data_json_url: UrlAvailable on crate feature
scraper only.Full URL of the chart data JSON
data_raw: StringRaw chart data JSON string
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