pub enum ClearanceShape {
Box(BoxClearance),
Cylinder(CylinderClearance),
}Variants§
Box(BoxClearance)
Cylinder(CylinderClearance)
Trait Implementations§
Source§impl Clone for ClearanceShape
impl Clone for ClearanceShape
Source§fn clone(&self) -> ClearanceShape
fn clone(&self) -> ClearanceShape
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ClearanceShape
impl Debug for ClearanceShape
Source§impl PartialEq for ClearanceShape
impl PartialEq for ClearanceShape
impl Copy for ClearanceShape
impl StructuralPartialEq for ClearanceShape
Auto Trait Implementations§
impl Freeze for ClearanceShape
impl RefUnwindSafe for ClearanceShape
impl Send for ClearanceShape
impl Sync for ClearanceShape
impl Unpin for ClearanceShape
impl UnwindSafe for ClearanceShape
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