pub struct LinkQueryOptions {
pub link_type: Option<String>,
pub limit: Option<usize>,
}Expand description
Options for querying graph links.
Fields§
§link_type: Option<String>Filter by relationship type.
limit: Option<usize>Maximum number of results.
Trait Implementations§
Source§impl Clone for LinkQueryOptions
impl Clone for LinkQueryOptions
Source§fn clone(&self) -> LinkQueryOptions
fn clone(&self) -> LinkQueryOptions
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 LinkQueryOptions
impl Debug for LinkQueryOptions
Source§impl Default for LinkQueryOptions
impl Default for LinkQueryOptions
Source§fn default() -> LinkQueryOptions
fn default() -> LinkQueryOptions
Returns the “default value” for a type. Read more
impl Eq for LinkQueryOptions
Source§impl PartialEq for LinkQueryOptions
impl PartialEq for LinkQueryOptions
Source§fn eq(&self, other: &LinkQueryOptions) -> bool
fn eq(&self, other: &LinkQueryOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LinkQueryOptions
Auto Trait Implementations§
impl Freeze for LinkQueryOptions
impl RefUnwindSafe for LinkQueryOptions
impl Send for LinkQueryOptions
impl Sync for LinkQueryOptions
impl Unpin for LinkQueryOptions
impl UnsafeUnpin for LinkQueryOptions
impl UnwindSafe for LinkQueryOptions
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