pub struct Face {
pub next: FaceIdx,
pub prev: FaceIdx,
pub an_edge: EdgeIdx,
pub trail: FaceIdx,
pub n: u32,
pub marked: bool,
pub inside: bool,
}Fields§
§next: FaceIdx§prev: FaceIdx§an_edge: EdgeIdx§trail: FaceIdx§n: u32§marked: bool§inside: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for Face
impl RefUnwindSafe for Face
impl Send for Face
impl Sync for Face
impl Unpin for Face
impl UnsafeUnpin for Face
impl UnwindSafe for Face
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