pub struct ChainAnalysis {
pub total_actions: usize,
pub positioning_actions: usize,
pub read_actions: usize,
pub control_actions: usize,
pub involves_motor: bool,
pub involves_piezo: bool,
pub modifies_bias: bool,
}Expand description
Analysis result for an ActionChain
Fields§
§total_actions: usize§positioning_actions: usize§read_actions: usize§control_actions: usize§involves_motor: bool§involves_piezo: bool§modifies_bias: boolTrait Implementations§
Source§impl Clone for ChainAnalysis
impl Clone for ChainAnalysis
Source§fn clone(&self) -> ChainAnalysis
fn clone(&self) -> ChainAnalysis
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ChainAnalysis
impl RefUnwindSafe for ChainAnalysis
impl Send for ChainAnalysis
impl Sync for ChainAnalysis
impl Unpin for ChainAnalysis
impl UnwindSafe for ChainAnalysis
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