pub struct ToleranceBlock {
pub mode: ToleranceMode,
pub upper: f64,
pub lower: f64,
}Expand description
The tolerance block of a dimension: tolMode none / symmetric / deviation
/ limits with tolUpper / tolLower.
Fields§
§mode: ToleranceMode§upper: f64§lower: f64Implementations§
Trait Implementations§
Source§impl Clone for ToleranceBlock
impl Clone for ToleranceBlock
Source§fn clone(&self) -> ToleranceBlock
fn clone(&self) -> ToleranceBlock
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 Copy for ToleranceBlock
Source§impl Debug for ToleranceBlock
impl Debug for ToleranceBlock
Source§impl PartialEq for ToleranceBlock
impl PartialEq for ToleranceBlock
impl StructuralPartialEq for ToleranceBlock
Auto Trait Implementations§
impl Freeze for ToleranceBlock
impl RefUnwindSafe for ToleranceBlock
impl Send for ToleranceBlock
impl Sync for ToleranceBlock
impl Unpin for ToleranceBlock
impl UnsafeUnpin for ToleranceBlock
impl UnwindSafe for ToleranceBlock
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