pub struct RustCycleElement {
pub time_s: f64,
pub mps: f64,
pub grade: Option<f64>,
pub road_type: Option<f64>,
}Fields§
§time_s: f64time s
mps: f64speed [m/s]
grade: Option<f64>grade [rise/run]
road_type: Option<f64>max possible charge rate from roadway
Trait Implementations§
Source§impl Clone for RustCycleElement
impl Clone for RustCycleElement
Source§fn clone(&self) -> RustCycleElement
fn clone(&self) -> RustCycleElement
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 RustCycleElement
impl Debug for RustCycleElement
Source§impl Default for RustCycleElement
impl Default for RustCycleElement
Source§fn default() -> RustCycleElement
fn default() -> RustCycleElement
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RustCycleElement
impl<'de> Deserialize<'de> for RustCycleElement
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 RustCycleElement
impl PartialEq for RustCycleElement
Source§impl Serialize for RustCycleElement
impl Serialize for RustCycleElement
impl StructuralPartialEq for RustCycleElement
Auto Trait Implementations§
impl Freeze for RustCycleElement
impl RefUnwindSafe for RustCycleElement
impl Send for RustCycleElement
impl Sync for RustCycleElement
impl Unpin for RustCycleElement
impl UnwindSafe for RustCycleElement
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more