pub enum TraversalError {
Unsupported,
}Expand description
A traversal that could not be completed with the v1 non-degenerate walk.
Variants§
Unsupported
The turn graph hit a case the clean areal walk does not handle (clustered turns, self-intersections, or a walk that failed to close). These are the deferred Boost sub-problems — see the module docs.
Trait Implementations§
Source§impl Clone for TraversalError
impl Clone for TraversalError
Source§fn clone(&self) -> TraversalError
fn clone(&self) -> TraversalError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TraversalError
Source§impl Debug for TraversalError
impl Debug for TraversalError
impl Eq for TraversalError
Source§impl From<TraversalError> for OverlayError
impl From<TraversalError> for OverlayError
Source§fn from(_: TraversalError) -> Self
fn from(_: TraversalError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TraversalError
impl PartialEq for TraversalError
impl StructuralPartialEq for TraversalError
Auto Trait Implementations§
impl Freeze for TraversalError
impl RefUnwindSafe for TraversalError
impl Send for TraversalError
impl Sync for TraversalError
impl Unpin for TraversalError
impl UnsafeUnpin for TraversalError
impl UnwindSafe for TraversalError
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