pub struct BoltData {
pub bolt_number: u32,
pub bolt_torque: u32,
pub bolt_angle: u16,
}
Expand description
Details of an individual bolt in the tightening result.
Fields§
§bolt_number: u32
The bolt number.
bolt_torque: u32
The torque applied to the bolt.
bolt_angle: u16
The angle applied to the bolt.
Trait Implementations§
impl Eq for BoltData
impl StructuralPartialEq for BoltData
Auto Trait Implementations§
impl Freeze for BoltData
impl RefUnwindSafe for BoltData
impl Send for BoltData
impl Sync for BoltData
impl Unpin for BoltData
impl UnwindSafe for BoltData
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