pub struct WithOffsetStream {
pub items: Vec<u64>,
pub items_per_fetch: u32,
pub has_more: bool,
pub has_less: bool,
pub unknown: HashMap<String, Value>,
}Expand description
?
Fields§
§items: Vec<u64>Items in the stream?
items_per_fetch: u32The # of items per fetch?
has_more: boolHas more entries?
has_less: bool?
unknown: HashMap<String, Value>Unknown data
Trait Implementations§
Source§impl Debug for WithOffsetStream
impl Debug for WithOffsetStream
Source§impl<'de> Deserialize<'de> for WithOffsetStream
impl<'de> Deserialize<'de> for WithOffsetStream
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 WithOffsetStream
impl RefUnwindSafe for WithOffsetStream
impl Send for WithOffsetStream
impl Sync for WithOffsetStream
impl Unpin for WithOffsetStream
impl UnwindSafe for WithOffsetStream
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