pub struct Frequency { /* private fields */ }Implementations§
Trait Implementations§
Source§impl AddAssign for Frequency
impl AddAssign for Frequency
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
Performs the
+= operation. Read moreSource§impl<'__de, __Context> BorrowDecode<'__de, __Context> for Frequency
impl<'__de, __Context> BorrowDecode<'__de, __Context> for Frequency
Source§fn borrow_decode<__D: BorrowDecoder<'__de, Context = __Context>>(
decoder: &mut __D,
) -> Result<Self, DecodeError>
fn borrow_decode<__D: BorrowDecoder<'__de, Context = __Context>>( decoder: &mut __D, ) -> Result<Self, DecodeError>
Attempt to decode this type with the given BorrowDecode.
Source§impl Div<Frequency> for AngularAcceleration
impl Div<Frequency> for AngularAcceleration
Source§type Output = AngularVelocity
type Output = AngularVelocity
The resulting type after applying the
/ operator.Source§impl Div<Frequency> for AngularVelocity
impl Div<Frequency> for AngularVelocity
Source§type Output = PlaneAngle
type Output = PlaneAngle
The resulting type after applying the
/ operator.Source§impl Div<Frequency> for Energy
impl Div<Frequency> for Energy
Source§type Output = EnergyPerFrequency
type Output = EnergyPerFrequency
The resulting type after applying the
/ operator.Source§impl Div<Frequency> for FrequencySquared
impl Div<Frequency> for FrequencySquared
Source§impl From<f64> for Frequency
impl From<f64> for Frequency
Source§fn from(native: NativeType) -> Frequency
fn from(native: NativeType) -> Frequency
Converts to this type from the input type.
Source§impl Into<f64> for Frequency
impl Into<f64> for Frequency
Source§fn into(self) -> NativeType
fn into(self) -> NativeType
Converts this type into the (usually inferred) input type.
Source§impl Mul<AngularVelocity> for Frequency
impl Mul<AngularVelocity> for Frequency
Source§type Output = AngularAcceleration
type Output = AngularAcceleration
The resulting type after applying the
* operator.Source§fn mul(self, rhs: AngularVelocity) -> AngularAcceleration
fn mul(self, rhs: AngularVelocity) -> AngularAcceleration
Performs the
* operation. Read moreSource§impl Mul<EnergyPerFrequency> for Frequency
impl Mul<EnergyPerFrequency> for Frequency
Source§impl Mul<Frequency> for AngularVelocity
impl Mul<Frequency> for AngularVelocity
Source§type Output = AngularAcceleration
type Output = AngularAcceleration
The resulting type after applying the
* operator.Source§impl Mul<Frequency> for EnergyPerFrequency
impl Mul<Frequency> for EnergyPerFrequency
Source§impl Mul<Frequency> for PlaneAngle
impl Mul<Frequency> for PlaneAngle
Source§type Output = AngularVelocity
type Output = AngularVelocity
The resulting type after applying the
* operator.Source§impl Mul<PlaneAngle> for Frequency
impl Mul<PlaneAngle> for Frequency
Source§type Output = AngularVelocity
type Output = AngularVelocity
The resulting type after applying the
* operator.Source§fn mul(self, rhs: PlaneAngle) -> AngularVelocity
fn mul(self, rhs: PlaneAngle) -> AngularVelocity
Performs the
* operation. Read moreSource§impl Mul for Frequency
impl Mul for Frequency
Source§type Output = FrequencySquared
type Output = FrequencySquared
The resulting type after applying the
* operator.Source§impl PartialOrd for Frequency
impl PartialOrd for Frequency
Source§impl SubAssign for Frequency
impl SubAssign for Frequency
Source§fn sub_assign(&mut self, rhs: Self)
fn sub_assign(&mut self, rhs: Self)
Performs the
-= operation. Read moreimpl Copy for Frequency
Auto Trait Implementations§
impl Freeze for Frequency
impl RefUnwindSafe for Frequency
impl Send for Frequency
impl Sync for Frequency
impl Unpin for Frequency
impl UnwindSafe for Frequency
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