pub struct FaceId(/* private fields */);Expand description
An index pointing to a face.
This is just a thin newtype wrapper over usize for clarity and to disambiguate it from other index types. Use the [id()] method to access the underlying index.
Implementations§
Trait Implementations§
Source§impl Ord for FaceId
impl Ord for FaceId
Source§impl PartialOrd for FaceId
impl PartialOrd for FaceId
impl Copy for FaceId
impl Eq for FaceId
impl StructuralPartialEq for FaceId
Auto Trait Implementations§
impl Freeze for FaceId
impl RefUnwindSafe for FaceId
impl Send for FaceId
impl Sync for FaceId
impl Unpin for FaceId
impl UnsafeUnpin for FaceId
impl UnwindSafe for FaceId
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