pub struct OutputLogicStates {
pub new_data_available: bool,
pub out0: bool,
pub out1: bool,
pub out2: bool,
pub out3: bool,
}Expand description
Channel output logic states.
Fields§
§new_data_available: boolOutput Logic State for pre-processed data capture for any enabled channel. Bit cleared on read.
out0: boolButton output logic state for channel 0.
out1: boolButton output logic state for channel 1.
out2: boolButton output logic state for channel 2.
out3: boolButton output logic state for channel 3.
Trait Implementations§
Source§impl Clone for OutputLogicStates
impl Clone for OutputLogicStates
Source§fn clone(&self) -> OutputLogicStates
fn clone(&self) -> OutputLogicStates
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 moreimpl Copy for OutputLogicStates
Auto Trait Implementations§
impl Freeze for OutputLogicStates
impl RefUnwindSafe for OutputLogicStates
impl Send for OutputLogicStates
impl Sync for OutputLogicStates
impl Unpin for OutputLogicStates
impl UnwindSafe for OutputLogicStates
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