[][src]Struct osmgraphing::routing::GraphBuilder

pub struct GraphBuilder { /* fields omitted */ }

Methods

impl GraphBuilder[src]

pub fn new() -> Self[src]

pub fn with_capacity(node_capacity: usize, edge_capacity: usize) -> Self[src]

pub fn new_graph(&mut self) -> &mut Self[src]

pub fn reserve(
    &mut self,
    additional_nodes: usize,
    additional_edges: usize
) -> &mut Self
[src]

pub fn reserve_nodes(&mut self, additional: usize) -> &mut Self[src]

pub fn reserve_edges(&mut self, additional: usize) -> &mut Self[src]

pub fn push_node(&mut self, id: usize, lat: f64, lon: f64) -> &mut Self[src]

pub fn push_edge(
    &mut self,
    id: usize,
    src: usize,
    dst: usize,
    weight: u64
) -> &mut Self
[src]

pub fn finalize(self) -> Graph[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]