pub struct ControlSignalInfo {
pub current_index: i32,
pub signal_names: Vec<String>,
pub signal_indexes: Vec<i32>,
}Expand description
Information about available control signals.
Fields§
§current_index: i32Currently selected signal index
signal_names: Vec<String>Names of available signals
signal_indexes: Vec<i32>Indexes of available signals
Trait Implementations§
Source§impl Clone for ControlSignalInfo
impl Clone for ControlSignalInfo
Source§fn clone(&self) -> ControlSignalInfo
fn clone(&self) -> ControlSignalInfo
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 ControlSignalInfo
impl RefUnwindSafe for ControlSignalInfo
impl Send for ControlSignalInfo
impl Sync for ControlSignalInfo
impl Unpin for ControlSignalInfo
impl UnwindSafe for ControlSignalInfo
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