pub struct GraphQueryPage {
pub cursor: Option<String>,
pub limit: Option<usize>,
pub next_cursor: Option<String>,
pub returned_nodes: usize,
pub returned_edges: usize,
pub truncated: bool,
pub diagnostics: Vec<String>,
}Fields§
§cursor: Option<String>§limit: Option<usize>§next_cursor: Option<String>§returned_nodes: usize§returned_edges: usize§truncated: bool§diagnostics: Vec<String>Trait Implementations§
Source§impl Clone for GraphQueryPage
impl Clone for GraphQueryPage
Source§fn clone(&self) -> GraphQueryPage
fn clone(&self) -> GraphQueryPage
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 GraphQueryPage
impl Debug for GraphQueryPage
Source§impl Default for GraphQueryPage
impl Default for GraphQueryPage
Source§fn default() -> GraphQueryPage
fn default() -> GraphQueryPage
Returns the “default value” for a type. Read more
impl Eq for GraphQueryPage
Source§impl PartialEq for GraphQueryPage
impl PartialEq for GraphQueryPage
Source§fn eq(&self, other: &GraphQueryPage) -> bool
fn eq(&self, other: &GraphQueryPage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GraphQueryPage
Auto Trait Implementations§
impl Freeze for GraphQueryPage
impl RefUnwindSafe for GraphQueryPage
impl Send for GraphQueryPage
impl Sync for GraphQueryPage
impl Unpin for GraphQueryPage
impl UnsafeUnpin for GraphQueryPage
impl UnwindSafe for GraphQueryPage
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