pub struct ControllerV2Metrics {
pub responding: bool,
pub ping_latency_ms: f64,
pub firmware_version: i32,
pub uptime: i32,
pub frames: i32,
pub fps: i32,
pub core_temperature: f64,
pub board_temperature: f64,
pub shunt_voltage: f64,
pub voltage: f64,
pub power: f64,
pub current: f64,
}
Fields§
§responding: bool
§ping_latency_ms: f64
§firmware_version: i32
§uptime: i32
§frames: i32
§fps: i32
§core_temperature: f64
§board_temperature: f64
§shunt_voltage: f64
§voltage: f64
§power: f64
§current: f64
Trait Implementations§
Source§impl Clone for ControllerV2Metrics
impl Clone for ControllerV2Metrics
Source§fn clone(&self) -> ControllerV2Metrics
fn clone(&self) -> ControllerV2Metrics
Returns a copy 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 ControllerV2Metrics
impl Debug for ControllerV2Metrics
Source§impl<'de> Deserialize<'de> for ControllerV2Metrics
impl<'de> Deserialize<'de> for ControllerV2Metrics
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 ControllerV2Metrics
impl PartialEq for ControllerV2Metrics
impl StructuralPartialEq for ControllerV2Metrics
Auto Trait Implementations§
impl Freeze for ControllerV2Metrics
impl RefUnwindSafe for ControllerV2Metrics
impl Send for ControllerV2Metrics
impl Sync for ControllerV2Metrics
impl Unpin for ControllerV2Metrics
impl UnwindSafe for ControllerV2Metrics
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