pub struct ArenaEdge {
pub wire_id: u64,
pub curve: NurbsCurve,
pub t0: f64,
pub t1: f64,
pub start: VertexId,
pub end: VertexId,
pub degenerate: bool,
pub name: Option<String>,
}Fields§
§wire_id: u64§curve: NurbsCurve§t0: f64§t1: f64§start: VertexId§end: VertexId§degenerate: bool§name: Option<String>Trait Implementations§
Auto Trait Implementations§
impl !Freeze for ArenaEdge
impl !RefUnwindSafe for ArenaEdge
impl !Sync for ArenaEdge
impl Send for ArenaEdge
impl Unpin for ArenaEdge
impl UnsafeUnpin for ArenaEdge
impl UnwindSafe for ArenaEdge
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