pub struct TelemetryRow {Show 14 fields
pub timestep: usize,
pub time_hr: f32,
pub target_kw: f32,
pub feeder_kw: f32,
pub tracking_error_kw: f32,
pub baseload_kw: f32,
pub solar_kw: f32,
pub ev_requested_kw: f32,
pub ev_dispatched_kw: f32,
pub battery_kw: f32,
pub battery_soc: f32,
pub dr_requested_kw: f32,
pub dr_achieved_kw: f32,
pub limit_ok: bool,
}Fields§
§timestep: usize§time_hr: f32§target_kw: f32§feeder_kw: f32§tracking_error_kw: f32§baseload_kw: f32§solar_kw: f32§ev_requested_kw: f32§ev_dispatched_kw: f32§battery_kw: f32§battery_soc: f32§dr_requested_kw: f32§dr_achieved_kw: f32§limit_ok: boolTrait Implementations§
Source§impl Clone for TelemetryRow
impl Clone for TelemetryRow
Source§fn clone(&self) -> TelemetryRow
fn clone(&self) -> TelemetryRow
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 TelemetryRow
impl Debug for TelemetryRow
Auto Trait Implementations§
impl Freeze for TelemetryRow
impl RefUnwindSafe for TelemetryRow
impl Send for TelemetryRow
impl Sync for TelemetryRow
impl Unpin for TelemetryRow
impl UnwindSafe for TelemetryRow
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