pub struct BoltData {
pub pset_id: u16,
pub tool_number: u16,
pub bolt_number: u32,
pub bolt_name_size: u16,
pub bolt_name: String,
}
Expand description
Contains details about a bolt in a mode.
Fields§
§pset_id: u16
Parameter set ID
tool_number: u16
Tool number
bolt_number: u32
Bolt number
bolt_name_size: u16
Length of the bolt name
bolt_name: String
The name of 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