pub struct PathQuery {
pub from: EntityRef,
pub to: EntityRef,
pub relationship_types: Vec<String>,
pub max_depth: u8,
pub limit: usize,
}Expand description
Query for deterministic bounded path finding.
Fields§
§from: EntityRef§to: EntityRef§relationship_types: Vec<String>§max_depth: u8§limit: usizeTrait Implementations§
Source§impl<'de> Deserialize<'de> for PathQuery
impl<'de> Deserialize<'de> for PathQuery
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
impl Eq for PathQuery
impl StructuralPartialEq for PathQuery
Auto Trait Implementations§
impl Freeze for PathQuery
impl RefUnwindSafe for PathQuery
impl Send for PathQuery
impl Sync for PathQuery
impl Unpin for PathQuery
impl UnsafeUnpin for PathQuery
impl UnwindSafe for PathQuery
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