pub struct V2XSignalWattPoint {
pub custom_data: Option<CustomData>,
pub power: f64,
pub signal: i64,
}Expand description
(2.1) A point of a signal-watt curve.
Fields§
§custom_data: Option<CustomData>§power: f64Power in W to charge (positive) or discharge (negative) at specified frequency.
signal: i64Signal value from an AFRRSignalRequest.
Trait Implementations§
Source§impl Clone for V2XSignalWattPoint
impl Clone for V2XSignalWattPoint
Source§fn clone(&self) -> V2XSignalWattPoint
fn clone(&self) -> V2XSignalWattPoint
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 V2XSignalWattPoint
impl Debug for V2XSignalWattPoint
Source§impl PartialEq for V2XSignalWattPoint
impl PartialEq for V2XSignalWattPoint
impl StructuralPartialEq for V2XSignalWattPoint
Auto Trait Implementations§
impl Freeze for V2XSignalWattPoint
impl RefUnwindSafe for V2XSignalWattPoint
impl Send for V2XSignalWattPoint
impl Sync for V2XSignalWattPoint
impl Unpin for V2XSignalWattPoint
impl UnsafeUnpin for V2XSignalWattPoint
impl UnwindSafe for V2XSignalWattPoint
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