pub struct OutputPage {
pub chunks: Vec<OutputChunk>,
pub next_cursor: Option<u64>,
pub truncated: bool,
}Fields§
§chunks: Vec<OutputChunk>§next_cursor: Option<u64>§truncated: boolTrait Implementations§
Source§impl Clone for OutputPage
impl Clone for OutputPage
Source§fn clone(&self) -> OutputPage
fn clone(&self) -> OutputPage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OutputPage
impl Debug for OutputPage
Source§impl<'de> Deserialize<'de> for OutputPage
impl<'de> Deserialize<'de> for OutputPage
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
impl Eq for OutputPage
Source§impl PartialEq for OutputPage
impl PartialEq for OutputPage
Source§impl Serialize for OutputPage
impl Serialize for OutputPage
impl StructuralPartialEq for OutputPage
Auto Trait Implementations§
impl Freeze for OutputPage
impl RefUnwindSafe for OutputPage
impl Send for OutputPage
impl Sync for OutputPage
impl Unpin for OutputPage
impl UnsafeUnpin for OutputPage
impl UnwindSafe for OutputPage
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