pub struct MicroBarPS(pub f64);
Expand description
Pressure vertical velocity in microbar/s
Tuple Fields§
§0: f64
Implementations§
Source§impl MicroBarPS
impl MicroBarPS
Sourcepub fn max(self, other: MicroBarPS) -> Self
pub fn max(self, other: MicroBarPS) -> Self
Find the maximum for two values
Sourcepub fn min(self, other: MicroBarPS) -> Self
pub fn min(self, other: MicroBarPS) -> Self
Find the minimum for two values
Trait Implementations§
Source§impl<T> Add<T> for MicroBarPS
impl<T> Add<T> for MicroBarPS
Source§impl<T> AddAssign<T> for MicroBarPS
impl<T> AddAssign<T> for MicroBarPS
Source§fn add_assign(&mut self, rhs: T)
fn add_assign(&mut self, rhs: T)
Performs the
+=
operation. Read moreSource§impl Clone for MicroBarPS
impl Clone for MicroBarPS
Source§fn clone(&self) -> MicroBarPS
fn clone(&self) -> MicroBarPS
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 MicroBarPS
impl Debug for MicroBarPS
Source§impl<T> Div<T> for MicroBarPS
impl<T> Div<T> for MicroBarPS
Source§impl Div<f64> for MicroBarPS
impl Div<f64> for MicroBarPS
Source§impl DivAssign<f64> for MicroBarPS
impl DivAssign<f64> for MicroBarPS
Source§fn div_assign(&mut self, rhs: f64)
fn div_assign(&mut self, rhs: f64)
Performs the
/=
operation. Read moreSource§impl From<MicroBarPS> for PaPS
impl From<MicroBarPS> for PaPS
Source§fn from(p: MicroBarPS) -> Self
fn from(p: MicroBarPS) -> Self
Converts to this type from the input type.
Source§impl From<PaPS> for MicroBarPS
impl From<PaPS> for MicroBarPS
Source§impl Mul<f64> for MicroBarPS
impl Mul<f64> for MicroBarPS
Source§impl MulAssign<f64> for MicroBarPS
impl MulAssign<f64> for MicroBarPS
Source§fn mul_assign(&mut self, rhs: f64)
fn mul_assign(&mut self, rhs: f64)
Performs the
*=
operation. Read moreSource§impl Neg for MicroBarPS
impl Neg for MicroBarPS
Source§impl<T> PartialEq<T> for MicroBarPS
impl<T> PartialEq<T> for MicroBarPS
Source§impl<T> PartialOrd<T> for MicroBarPS
impl<T> PartialOrd<T> for MicroBarPS
Source§impl Quantity for MicroBarPS
impl Quantity for MicroBarPS
Source§fn unwrap(self) -> f64
fn unwrap(self) -> f64
Unwrap the value from the new type and check for validity, panic if contents are invalid.
Source§fn into_option(self) -> Option<f64>
fn into_option(self) -> Option<f64>
Convert into an option that is
None
if the content is invalid.Source§impl<T> Sub<T> for MicroBarPS
impl<T> Sub<T> for MicroBarPS
Source§impl<T> SubAssign<T> for MicroBarPS
impl<T> SubAssign<T> for MicroBarPS
Source§fn sub_assign(&mut self, rhs: T)
fn sub_assign(&mut self, rhs: T)
Performs the
-=
operation. Read moreimpl Copy for MicroBarPS
impl PVV for MicroBarPS
Auto Trait Implementations§
impl Freeze for MicroBarPS
impl RefUnwindSafe for MicroBarPS
impl Send for MicroBarPS
impl Sync for MicroBarPS
impl Unpin for MicroBarPS
impl UnwindSafe for MicroBarPS
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