pub struct V2XFreqWattPoint {
pub custom_data: Option<CustomData>,
pub frequency: f64,
pub power: f64,
}Expand description
(2.1) A point of a frequency-watt curve.
Fields§
§custom_data: Option<CustomData>§frequency: f64Net frequency in Hz.
power: f64Power in W to charge (positive) or discharge (negative) at specified frequency.
Trait Implementations§
Source§impl Clone for V2XFreqWattPoint
impl Clone for V2XFreqWattPoint
Source§fn clone(&self) -> V2XFreqWattPoint
fn clone(&self) -> V2XFreqWattPoint
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 V2XFreqWattPoint
impl Debug for V2XFreqWattPoint
Source§impl PartialEq for V2XFreqWattPoint
impl PartialEq for V2XFreqWattPoint
impl StructuralPartialEq for V2XFreqWattPoint
Auto Trait Implementations§
impl Freeze for V2XFreqWattPoint
impl RefUnwindSafe for V2XFreqWattPoint
impl Send for V2XFreqWattPoint
impl Sync for V2XFreqWattPoint
impl Unpin for V2XFreqWattPoint
impl UnsafeUnpin for V2XFreqWattPoint
impl UnwindSafe for V2XFreqWattPoint
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