pub struct GraphPathRequest {
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 include_deleted: bool,
}Expand description
API request for graph path 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§include_deleted: boolTrait Implementations§
Source§impl Clone for GraphPathRequest
impl Clone for GraphPathRequest
Source§fn clone(&self) -> GraphPathRequest
fn clone(&self) -> GraphPathRequest
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 GraphPathRequest
impl Debug for GraphPathRequest
Source§impl<'de> Deserialize<'de> for GraphPathRequest
impl<'de> Deserialize<'de> for GraphPathRequest
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 GraphPathRequest
impl RefUnwindSafe for GraphPathRequest
impl Send for GraphPathRequest
impl Sync for GraphPathRequest
impl Unpin for GraphPathRequest
impl UnsafeUnpin for GraphPathRequest
impl UnwindSafe for GraphPathRequest
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