pub struct FetchedTableList {
pub tables: Vec<BmsTableInfo>,
pub raw_json: String,
}Available on crate feature
scraper only.Expand description
Result of fetching a table list with its raw JSON string.
Fields§
§tables: Vec<BmsTableInfo>Parsed list entries.
raw_json: StringRaw JSON string actually used for parsing.
Auto Trait Implementations§
impl Freeze for FetchedTableList
impl RefUnwindSafe for FetchedTableList
impl Send for FetchedTableList
impl Sync for FetchedTableList
impl Unpin for FetchedTableList
impl UnwindSafe for FetchedTableList
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