pub struct HalfEdgeID(/* private fields */);
Expand description
A unique ID for a halfedge.
Trait Implementations§
Source§impl Clone for HalfEdgeID
impl Clone for HalfEdgeID
Source§fn clone(&self) -> HalfEdgeID
fn clone(&self) -> HalfEdgeID
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for HalfEdgeID
impl Debug for HalfEdgeID
Source§impl Deref for HalfEdgeID
impl Deref for HalfEdgeID
Source§impl Display for HalfEdgeID
impl Display for HalfEdgeID
Source§impl Hash for HalfEdgeID
impl Hash for HalfEdgeID
Source§impl ID for HalfEdgeID
impl ID for HalfEdgeID
Source§unsafe fn new(val: u32) -> HalfEdgeID
unsafe fn new(val: u32) -> HalfEdgeID
Constructs a new ID from an integer. Should only be used for testing or similar.
Source§impl Ord for HalfEdgeID
impl Ord for HalfEdgeID
Source§fn cmp(&self, other: &HalfEdgeID) -> Ordering
fn cmp(&self, other: &HalfEdgeID) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for HalfEdgeID
impl PartialEq for HalfEdgeID
Source§impl PartialOrd for HalfEdgeID
impl PartialOrd for HalfEdgeID
impl Copy for HalfEdgeID
impl Eq for HalfEdgeID
impl StructuralPartialEq for HalfEdgeID
Auto Trait Implementations§
impl Freeze for HalfEdgeID
impl RefUnwindSafe for HalfEdgeID
impl Send for HalfEdgeID
impl Sync for HalfEdgeID
impl Unpin for HalfEdgeID
impl UnwindSafe for HalfEdgeID
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