pub enum BoundaryType {
Vertex(VertexId),
Loop(CoedgeId),
}Variants§
Vertex(VertexId)
A boundary defined by a single vertex — no edge exists yet (e.g. a
face fresh out of mvfs).
Loop(CoedgeId)
A boundary defined by a starting edge loop.
Trait Implementations§
Source§impl Clone for BoundaryType
impl Clone for BoundaryType
Source§fn clone(&self) -> BoundaryType
fn clone(&self) -> BoundaryType
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 BoundaryType
Source§impl Debug for BoundaryType
impl Debug for BoundaryType
impl Eq for BoundaryType
Source§impl PartialEq for BoundaryType
impl PartialEq for BoundaryType
Source§fn eq(&self, other: &BoundaryType) -> bool
fn eq(&self, other: &BoundaryType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BoundaryType
Auto Trait Implementations§
impl Freeze for BoundaryType
impl RefUnwindSafe for BoundaryType
impl Send for BoundaryType
impl Sync for BoundaryType
impl Unpin for BoundaryType
impl UnsafeUnpin for BoundaryType
impl UnwindSafe for BoundaryType
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