#[repr(C)]pub struct HullVertex {
pub edge: u8,
}Expand description
A hull vertex. Identified by a half-edge with this vertex as its tail.
Fields§
§edge: u8A half-edge that has this vertex as the origin.
Trait Implementations§
Source§impl Clone for HullVertex
impl Clone for HullVertex
Source§fn clone(&self) -> HullVertex
fn clone(&self) -> HullVertex
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 HullVertex
Source§impl Debug for HullVertex
impl Debug for HullVertex
Source§impl Default for HullVertex
impl Default for HullVertex
Source§fn default() -> HullVertex
fn default() -> HullVertex
Returns the “default value” for a type. Read more
impl Eq for HullVertex
Source§impl PartialEq for HullVertex
impl PartialEq for HullVertex
impl StructuralPartialEq for HullVertex
Auto Trait Implementations§
impl Freeze for HullVertex
impl RefUnwindSafe for HullVertex
impl Send for HullVertex
impl Sync for HullVertex
impl Unpin for HullVertex
impl UnsafeUnpin for HullVertex
impl UnwindSafe for HullVertex
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