pub struct FactoryHdr {
pub num_iter: u8,
pub options: FactoryOpt,
}Expand description
§CQC Factory Header
Additional header used to send factory information. Factory commands are used to tell the backend to do the following command or a sequence of commands multiple times.
Field Length Meaning
----- ------ -------
num_iter 1 byte Number of iterations to do the sequence.
options 1 byte Options when executing the factory.Fields§
§num_iter: u8§options: FactoryOptImplementations§
Trait Implementations§
Source§impl Debug for FactoryHdr
impl Debug for FactoryHdr
Source§impl<'de> Deserialize<'de> for FactoryHdr
impl<'de> Deserialize<'de> for FactoryHdr
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FactoryHdr
impl PartialEq for FactoryHdr
Source§impl Serialize for FactoryHdr
impl Serialize for FactoryHdr
impl StructuralPartialEq for FactoryHdr
Auto Trait Implementations§
impl Freeze for FactoryHdr
impl RefUnwindSafe for FactoryHdr
impl Send for FactoryHdr
impl Sync for FactoryHdr
impl Unpin for FactoryHdr
impl UnsafeUnpin for FactoryHdr
impl UnwindSafe for FactoryHdr
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