pub enum ToleranceZoneRef {
ToleranceZone(ToleranceZoneId),
ToleranceZoneWithDatum(ToleranceZoneWithDatumId),
Complex(ComplexUnitId),
}Variants§
ToleranceZone(ToleranceZoneId)
ToleranceZoneWithDatum(ToleranceZoneWithDatumId)
Complex(ComplexUnitId)
Implementations§
Source§impl ToleranceZoneRef
impl ToleranceZoneRef
pub fn resolve<'m>(&self, model: &'m StepModel) -> ToleranceZoneRefView<'m>
pub fn entity_key(&self) -> EntityKey
Trait Implementations§
Source§impl Clone for ToleranceZoneRef
impl Clone for ToleranceZoneRef
Source§fn clone(&self) -> ToleranceZoneRef
fn clone(&self) -> ToleranceZoneRef
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 moreSource§impl Debug for ToleranceZoneRef
impl Debug for ToleranceZoneRef
Source§impl PartialEq for ToleranceZoneRef
impl PartialEq for ToleranceZoneRef
Source§fn eq(&self, other: &ToleranceZoneRef) -> bool
fn eq(&self, other: &ToleranceZoneRef) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ToleranceZoneRef
Auto Trait Implementations§
impl Freeze for ToleranceZoneRef
impl RefUnwindSafe for ToleranceZoneRef
impl Send for ToleranceZoneRef
impl Sync for ToleranceZoneRef
impl Unpin for ToleranceZoneRef
impl UnsafeUnpin for ToleranceZoneRef
impl UnwindSafe for ToleranceZoneRef
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