pub struct OsmPbfH3EdgeGraphBuilder<T: PartialOrd + PartialEq + Add + Copy + Sync + Send, WA: WayAnalyzer<T>> { /* private fields */ }Expand description
Builds H3EdgeGraph instances from .osm.pbf files.
Implementations§
Trait Implementations§
Source§impl<T, WA> H3EdgeGraphBuilder<T> for OsmPbfH3EdgeGraphBuilder<T, WA>
impl<T, WA> H3EdgeGraphBuilder<T> for OsmPbfH3EdgeGraphBuilder<T, WA>
fn build_graph(self) -> Result<H3EdgeGraph<T>, Error>
Auto Trait Implementations§
impl<T, WA> Freeze for OsmPbfH3EdgeGraphBuilder<T, WA>where
WA: Freeze,
impl<T, WA> RefUnwindSafe for OsmPbfH3EdgeGraphBuilder<T, WA>where
WA: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, WA> Send for OsmPbfH3EdgeGraphBuilder<T, WA>where
WA: Send,
impl<T, WA> Sync for OsmPbfH3EdgeGraphBuilder<T, WA>where
WA: Sync,
impl<T, WA> Unpin for OsmPbfH3EdgeGraphBuilder<T, WA>
impl<T, WA> UnwindSafe for OsmPbfH3EdgeGraphBuilder<T, WA>where
WA: UnwindSafe,
T: UnwindSafe,
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more