pub struct GraphPathsRequest {
pub source_memory_id: String,
pub target_memory_id: String,
pub user_id: String,
pub mem_cube_id: Option<String>,
pub relation: Option<String>,
pub direction: GraphDirection,
pub max_depth: u32,
pub top_k_paths: u32,
pub include_deleted: bool,
}Expand description
API request for multi-path graph query.
Fields§
§source_memory_id: String§target_memory_id: String§user_id: String§mem_cube_id: Option<String>§relation: Option<String>§direction: GraphDirection§max_depth: u32§top_k_paths: u32§include_deleted: boolTrait Implementations§
Source§impl Clone for GraphPathsRequest
impl Clone for GraphPathsRequest
Source§fn clone(&self) -> GraphPathsRequest
fn clone(&self) -> GraphPathsRequest
Returns a duplicate of the value. Read more
1.0.0 · 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 GraphPathsRequest
impl Debug for GraphPathsRequest
Source§impl<'de> Deserialize<'de> for GraphPathsRequest
impl<'de> Deserialize<'de> for GraphPathsRequest
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
Auto Trait Implementations§
impl Freeze for GraphPathsRequest
impl RefUnwindSafe for GraphPathsRequest
impl Send for GraphPathsRequest
impl Sync for GraphPathsRequest
impl Unpin for GraphPathsRequest
impl UnsafeUnpin for GraphPathsRequest
impl UnwindSafe for GraphPathsRequest
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