pub struct GraphArgs {
pub roots: Vec<String>,
pub degrees: Option<i64>,
pub direction: Option<String>,
pub predicate: Option<String>,
pub select: Vec<String>,
pub max_documents: Option<i64>,
}Expand description
graph’s arguments.
Fields§
§roots: Vec<String>§degrees: Option<i64>§direction: Option<String>in | out | both (default).
predicate: Option<String>§select: Vec<String>§max_documents: Option<i64>Trait Implementations§
Auto Trait Implementations§
impl Freeze for GraphArgs
impl RefUnwindSafe for GraphArgs
impl Send for GraphArgs
impl Sync for GraphArgs
impl Unpin for GraphArgs
impl UnsafeUnpin for GraphArgs
impl UnwindSafe for GraphArgs
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