Struct deviantart::types::scraped_webpage_info::BrowsePageStream
source · pub struct BrowsePageStream {
pub cursor: String,
pub has_less: bool,
pub has_more: bool,
pub items: Vec<Value>,
pub items_per_fetch: u64,
pub stream_params: StreamParams,
pub stream_type: String,
pub stream_id: String,
pub fetch_next_callback: String,
pub unknown: HashMap<String, Value>,
}
Expand description
Search results appear here
Fields§
§cursor: String
The cursor
has_less: bool
Whether this has less?
has_more: bool
Whether this has more?
items: Vec<Value>
Deviation ids?
Usually, these are integers representing deviation ids. In some cases, these are strings of the format “xx-nnnnn”, where the “xx” part is unknown and the “nnnnn” part is a deviation id.
items_per_fetch: u64
The # of items per page
stream_params: StreamParams
Stream Params
stream_type: String
The stream type
stream_id: String
The stream id
fetch_next_callback: String
?
unknown: HashMap<String, Value>
Unknown data
Trait Implementations§
source§impl Debug for BrowsePageStream
impl Debug for BrowsePageStream
source§impl<'de> Deserialize<'de> for BrowsePageStream
impl<'de> Deserialize<'de> for BrowsePageStream
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 BrowsePageStream
impl RefUnwindSafe for BrowsePageStream
impl Send for BrowsePageStream
impl Sync for BrowsePageStream
impl Unpin for BrowsePageStream
impl UnwindSafe for BrowsePageStream
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