pub enum LoopRefView<'m> {
EdgeLoop(&'m EdgeLoop),
Loop(&'m Loop),
PolyLoop(&'m PolyLoop),
VertexLoop(&'m VertexLoop),
Complex(&'m ComplexUnit),
}Variants§
EdgeLoop(&'m EdgeLoop)
Loop(&'m Loop)
PolyLoop(&'m PolyLoop)
VertexLoop(&'m VertexLoop)
Complex(&'m ComplexUnit)
Trait Implementations§
Source§impl<'m> Clone for LoopRefView<'m>
impl<'m> Clone for LoopRefView<'m>
Source§fn clone(&self) -> LoopRefView<'m>
fn clone(&self) -> LoopRefView<'m>
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<'m> Copy for LoopRefView<'m>
Auto Trait Implementations§
impl<'m> Freeze for LoopRefView<'m>
impl<'m> RefUnwindSafe for LoopRefView<'m>
impl<'m> Send for LoopRefView<'m>
impl<'m> Sync for LoopRefView<'m>
impl<'m> Unpin for LoopRefView<'m>
impl<'m> UnsafeUnpin for LoopRefView<'m>
impl<'m> UnwindSafe for LoopRefView<'m>
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