pub struct CardRowV1 {
pub range: f64,
pub drop_linear: Option<f64>,
pub drop_adj: Option<f64>,
pub come_up: Option<f64>,
pub wind_linear: Option<f64>,
pub wind_adj: Option<f64>,
pub velocity: Option<f64>,
pub energy: Option<f64>,
pub time: Option<f64>,
pub wind_columns: Vec<f64>,
}Fields§
§range: f64Range in the request’s distance unit (yd / m).
drop_linear: Option<f64>§drop_adj: Option<f64>§come_up: Option<f64>§wind_linear: Option<f64>§wind_adj: Option<f64>§velocity: Option<f64>§energy: Option<f64>§time: Option<f64>§wind_columns: Vec<f64>Trait Implementations§
Auto Trait Implementations§
impl Freeze for CardRowV1
impl RefUnwindSafe for CardRowV1
impl Send for CardRowV1
impl Sync for CardRowV1
impl Unpin for CardRowV1
impl UnsafeUnpin for CardRowV1
impl UnwindSafe for CardRowV1
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<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.