pub enum RouteOutcome {
Route(Vec<ObjectId>),
Unreachable,
}Expand description
Result of a deterministic shortest-hop route query.
Variants§
Route(Vec<ObjectId>)
Ordered nodes from origin through destination, including both endpoints.
Unreachable
Both nodes are known and proven disconnected at the requested clear width.
Trait Implementations§
Source§impl Clone for RouteOutcome
impl Clone for RouteOutcome
Source§fn clone(&self) -> RouteOutcome
fn clone(&self) -> RouteOutcome
Returns a copy 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 RouteOutcome
impl Debug for RouteOutcome
Source§impl PartialEq for RouteOutcome
impl PartialEq for RouteOutcome
impl Eq for RouteOutcome
impl StructuralPartialEq for RouteOutcome
Auto Trait Implementations§
impl Freeze for RouteOutcome
impl RefUnwindSafe for RouteOutcome
impl Send for RouteOutcome
impl Sync for RouteOutcome
impl Unpin for RouteOutcome
impl UnwindSafe for RouteOutcome
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