pub enum EntityRef {
Vertex(VertexId),
Edge(EdgeId),
Wire(WireId),
Face(FaceId),
Shell(ShellId),
Solid(SolidId),
}Expand description
Reference to a topological entity.
Variants§
Vertex(VertexId)
A vertex.
Edge(EdgeId)
An edge.
Wire(WireId)
A wire.
Face(FaceId)
A face.
Shell(ShellId)
A shell.
Solid(SolidId)
A solid.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EntityRef
impl RefUnwindSafe for EntityRef
impl Send for EntityRef
impl Sync for EntityRef
impl Unpin for EntityRef
impl UnsafeUnpin for EntityRef
impl UnwindSafe for EntityRef
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