pub struct SatLoop<'a> { /* private fields */ }Expand description
Accessor for a loop entity record.
Loop record layout: loop $<attrib> <id> $<next_loop> $<unknown> $<coedge> $<face>
Implementations§
Source§impl<'a> SatLoop<'a>
impl<'a> SatLoop<'a>
Sourcepub fn from_record(record: &'a SatRecord) -> Option<Self>
pub fn from_record(record: &'a SatRecord) -> Option<Self>
Wraps a record as a loop entity.
Sourcepub fn next_loop(&self) -> SatPointer
pub fn next_loop(&self) -> SatPointer
Pointer to the next loop.
Sourcepub fn first_coedge(&self) -> SatPointer
pub fn first_coedge(&self) -> SatPointer
Pointer to the first coedge.
Sourcepub fn face(&self) -> SatPointer
pub fn face(&self) -> SatPointer
Pointer to the owner face.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for SatLoop<'a>
impl<'a> RefUnwindSafe for SatLoop<'a>
impl<'a> Send for SatLoop<'a>
impl<'a> Sync for SatLoop<'a>
impl<'a> Unpin for SatLoop<'a>
impl<'a> UnsafeUnpin for SatLoop<'a>
impl<'a> UnwindSafe for SatLoop<'a>
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