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: StringThe cursor
has_less: boolWhether this has less?
has_more: boolWhether 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: u64The # of items per page
stream_params: StreamParamsStream Params
stream_type: StringThe stream type
stream_id: StringThe 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