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: u16Parameter set ID
tool_number: u16Tool number
bolt_number: u32Bolt number
bolt_name_size: u16Length of the bolt name
bolt_name: StringThe 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