pub struct PathStep {
pub from_id: i64,
pub to_id: i64,
pub relation_type: String,
pub weight: f64,
}Expand description
Step in a path (edge + target node)
Fields§
§from_id: i64§to_id: i64§relation_type: String§weight: f64Trait Implementations§
Auto Trait Implementations§
impl Freeze for PathStep
impl RefUnwindSafe for PathStep
impl Send for PathStep
impl Sync for PathStep
impl Unpin for PathStep
impl UnsafeUnpin for PathStep
impl UnwindSafe for PathStep
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