pub enum CreateEngine<'a> {
Dijkstra,
CH,
CHSeedingNodeOrdering(&'a FastGraph),
}
Variants
Dijkstra
CH
CHSeedingNodeOrdering(&'a FastGraph)
Implementations
sourceimpl<'a> CreateEngine<'a>
impl<'a> CreateEngine<'a>
pub fn create(&self, input_graph: InputGraph) -> PathfindEngine
Auto Trait Implementations
impl<'a> RefUnwindSafe for CreateEngine<'a>
impl<'a> Send for CreateEngine<'a>
impl<'a> Sync for CreateEngine<'a>
impl<'a> Unpin for CreateEngine<'a>
impl<'a> UnwindSafe for CreateEngine<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more