pub struct Area(/* private fields */);Expand description
Implementations§
Source§impl Area
impl Area
Sourcepub fn display_as(self, unit: AreaUnit) -> DisplayWithUnit
pub fn display_as(self, unit: AreaUnit) -> DisplayWithUnit
Return a display wrapper that formats this area in the given unit.
Trait Implementations§
Source§impl AddAssign for Area
impl AddAssign for Area
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
Performs the
+= operation. Read moreSource§impl Div<Area> for GravitationalParameter
impl Div<Area> for GravitationalParameter
Source§type Output = Acceleration
type Output = Acceleration
The resulting type after applying the
/ operator.Source§impl Div<Area> for MagneticFlux
impl Div<Area> for MagneticFlux
Source§type Output = MagneticFluxDensity
type Output = MagneticFluxDensity
The resulting type after applying the
/ operator.Source§impl Div<Time> for Area
impl Div<Time> for Area
Source§type Output = SpecificAngularMomentum
type Output = SpecificAngularMomentum
The resulting type after applying the
/ operator.Source§impl DivAssign<f64> for Area
impl DivAssign<f64> for Area
Source§fn div_assign(&mut self, rhs: f64)
fn div_assign(&mut self, rhs: f64)
Performs the
/= operation. Read moreSource§impl Mul<Area> for MagneticFluxDensity
impl Mul<Area> for MagneticFluxDensity
Source§type Output = MagneticFlux
type Output = MagneticFlux
The resulting type after applying the
* operator.Source§impl Mul<MagneticFluxDensity> for Area
impl Mul<MagneticFluxDensity> for Area
Source§type Output = MagneticFlux
type Output = MagneticFlux
The resulting type after applying the
* operator.Source§fn mul(self, rhs: MagneticFluxDensity) -> MagneticFlux
fn mul(self, rhs: MagneticFluxDensity) -> MagneticFlux
Performs the
* operation. Read moreSource§impl MulAssign<f64> for Area
impl MulAssign<f64> for Area
Source§fn mul_assign(&mut self, rhs: f64)
fn mul_assign(&mut self, rhs: f64)
Performs the
*= operation. Read moreSource§impl PartialOrd for Area
impl PartialOrd for Area
Source§impl SubAssign for Area
impl SubAssign for Area
Source§fn sub_assign(&mut self, rhs: Self)
fn sub_assign(&mut self, rhs: Self)
Performs the
-= operation. Read moreimpl Copy for Area
impl StructuralPartialEq for Area
Auto Trait Implementations§
impl Freeze for Area
impl RefUnwindSafe for Area
impl Send for Area
impl Sync for Area
impl Unpin for Area
impl UnsafeUnpin for Area
impl UnwindSafe for Area
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