pub struct TelemetryParameters {
pub analog: [Option<String>; 5],
pub digital: [Option<String>; 8],
}Expand description
5 analog + 8 digital channel labels used by both PARM. and UNIT..
Fields§
§analog: [Option<String>; 5]Analog channel labels (5 entries, None when omitted).
digital: [Option<String>; 8]Digital channel labels (8 entries, None when omitted).
Trait Implementations§
Source§impl Clone for TelemetryParameters
impl Clone for TelemetryParameters
Source§fn clone(&self) -> TelemetryParameters
fn clone(&self) -> TelemetryParameters
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 moreSource§impl Debug for TelemetryParameters
impl Debug for TelemetryParameters
Source§impl Default for TelemetryParameters
impl Default for TelemetryParameters
Source§fn default() -> TelemetryParameters
fn default() -> TelemetryParameters
Returns the “default value” for a type. Read more
Source§impl PartialEq for TelemetryParameters
impl PartialEq for TelemetryParameters
impl Eq for TelemetryParameters
impl StructuralPartialEq for TelemetryParameters
Auto Trait Implementations§
impl Freeze for TelemetryParameters
impl RefUnwindSafe for TelemetryParameters
impl Send for TelemetryParameters
impl Sync for TelemetryParameters
impl Unpin for TelemetryParameters
impl UnwindSafe for TelemetryParameters
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