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