pub struct MolPerSecond(pub f64);Tuple Fields§
§0: f64Trait Implementations§
Source§impl Add for MolPerSecond
impl Add for MolPerSecond
Source§type Output = MolPerSecond
type Output = MolPerSecond
The resulting type after applying the
+ operator.Source§fn add(self: MolPerSecond, MolPerSecond: MolPerSecond) -> MolPerSecond
fn add(self: MolPerSecond, MolPerSecond: MolPerSecond) -> MolPerSecond
Performs the
+ operation. Read moreSource§impl Clone for MolPerSecond
impl Clone for MolPerSecond
Source§fn clone(&self) -> MolPerSecond
fn clone(&self) -> MolPerSecond
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 MolPerSecond
impl Debug for MolPerSecond
Source§impl Div<MolPerSecond> for f64
impl Div<MolPerSecond> for f64
Source§type Output = SecondPerMol
type Output = SecondPerMol
The resulting type after applying the
/ operator.Source§fn div(self: f64, MolPerSecond: MolPerSecond) -> SecondPerMol
fn div(self: f64, MolPerSecond: MolPerSecond) -> SecondPerMol
Performs the
/ operation. Read moreSource§impl Div<f64> for MolPerSecond
impl Div<f64> for MolPerSecond
Source§type Output = MolPerSecond
type Output = MolPerSecond
The resulting type after applying the
/ operator.Source§fn div(self: MolPerSecond, rhs: f64) -> MolPerSecond
fn div(self: MolPerSecond, rhs: f64) -> MolPerSecond
Performs the
/ operation. Read moreSource§impl Div for MolPerSecond
impl Div for MolPerSecond
Source§impl Mul<MolPerSecond> for SecondPerMol
impl Mul<MolPerSecond> for SecondPerMol
Source§impl Mul<MolPerSecond> for f64
impl Mul<MolPerSecond> for f64
Source§type Output = MolPerSecond
type Output = MolPerSecond
The resulting type after applying the
* operator.Source§fn mul(self: f64, MolPerSecond: MolPerSecond) -> MolPerSecond
fn mul(self: f64, MolPerSecond: MolPerSecond) -> MolPerSecond
Performs the
* operation. Read moreSource§impl Mul<SecondPerMol> for MolPerSecond
impl Mul<SecondPerMol> for MolPerSecond
Source§impl Mul<f64> for MolPerSecond
impl Mul<f64> for MolPerSecond
Source§type Output = MolPerSecond
type Output = MolPerSecond
The resulting type after applying the
* operator.Source§fn mul(self: MolPerSecond, rhs: f64) -> MolPerSecond
fn mul(self: MolPerSecond, rhs: f64) -> MolPerSecond
Performs the
* operation. Read moreSource§impl PartialEq for MolPerSecond
impl PartialEq for MolPerSecond
Source§fn eq(self: &MolPerSecond, MolPerSecond: &MolPerSecond) -> bool
fn eq(self: &MolPerSecond, MolPerSecond: &MolPerSecond) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Sub for MolPerSecond
impl Sub for MolPerSecond
Source§type Output = MolPerSecond
type Output = MolPerSecond
The resulting type after applying the
- operator.Source§fn sub(self: MolPerSecond, MolPerSecond: MolPerSecond) -> MolPerSecond
fn sub(self: MolPerSecond, MolPerSecond: MolPerSecond) -> MolPerSecond
Performs the
- operation. Read moreimpl Copy for MolPerSecond
Auto Trait Implementations§
impl Freeze for MolPerSecond
impl RefUnwindSafe for MolPerSecond
impl Send for MolPerSecond
impl Sync for MolPerSecond
impl Unpin for MolPerSecond
impl UnwindSafe for MolPerSecond
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