pub struct Reflectivity(/* private fields */);Trait Implementations§
Source§impl Add for Reflectivity
impl Add for Reflectivity
Source§type Output = Reflectivity
type Output = Reflectivity
The resulting type after applying the
+ operator.Source§fn add(self, rhs: Reflectivity) -> Reflectivity
fn add(self, rhs: Reflectivity) -> Reflectivity
Performs the
+ operation. Read moreSource§impl<'de> BorrowDecode<'de, ()> for Reflectivity
Decode as f32
impl<'de> BorrowDecode<'de, ()> for Reflectivity
Decode as f32
Source§fn borrow_decode<D: BorrowDecoder<'de>>(
decoder: &mut D,
) -> Result<Self, DecodeError>
fn borrow_decode<D: BorrowDecoder<'de>>( decoder: &mut D, ) -> Result<Self, DecodeError>
Attempt to decode this type with the given BorrowDecode.
Source§impl Clone for Reflectivity
impl Clone for Reflectivity
Source§fn clone(&self) -> Reflectivity
fn clone(&self) -> Reflectivity
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 Reflectivity
impl Debug for Reflectivity
Source§impl Decode<()> for Reflectivity
Decode as f32
impl Decode<()> for Reflectivity
Decode as f32
Source§impl Default for Reflectivity
impl Default for Reflectivity
Source§fn default() -> Reflectivity
fn default() -> Reflectivity
Returns the “default value” for a type. Read more
Source§impl Deref for Reflectivity
impl Deref for Reflectivity
Source§type Target = Quantity<dyn Dimension<I = Z0, M = Z0, L = Z0, J = Z0, Kind = dyn Kind, T = Z0, Th = Z0, N = Z0>, dyn Units<f32, luminous_intensity = candela, amount_of_substance = mole, time = second, thermodynamic_temperature = kelvin, length = meter, electric_current = ampere, mass = kilogram>, f32>
type Target = Quantity<dyn Dimension<I = Z0, M = Z0, L = Z0, J = Z0, Kind = dyn Kind, T = Z0, Th = Z0, N = Z0>, dyn Units<f32, luminous_intensity = candela, amount_of_substance = mole, time = second, thermodynamic_temperature = kelvin, length = meter, electric_current = ampere, mass = kilogram>, f32>
The resulting type after dereferencing.
Source§impl<'de> Deserialize<'de> for Reflectivity
impl<'de> Deserialize<'de> for Reflectivity
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<__RhsT> Div<__RhsT> for Reflectivity
impl<__RhsT> Div<__RhsT> for Reflectivity
Source§type Output = Reflectivity
type Output = Reflectivity
The resulting type after applying the
/ operator.Source§fn div(self, rhs: __RhsT) -> Reflectivity
fn div(self, rhs: __RhsT) -> Reflectivity
Performs the
/ operation. Read moreSource§impl Encode for Reflectivity
Encode as f32
impl Encode for Reflectivity
Encode as f32
Source§impl From<Quantity<dyn Dimension<I = Z0, M = Z0, L = Z0, J = Z0, Kind = dyn Kind, T = Z0, Th = Z0, N = Z0>, dyn Units<f32, luminous_intensity = candela, amount_of_substance = mole, time = second, thermodynamic_temperature = kelvin, length = meter, electric_current = ampere, mass = kilogram>, f32>> for Reflectivity
impl From<Quantity<dyn Dimension<I = Z0, M = Z0, L = Z0, J = Z0, Kind = dyn Kind, T = Z0, Th = Z0, N = Z0>, dyn Units<f32, luminous_intensity = candela, amount_of_substance = mole, time = second, thermodynamic_temperature = kelvin, length = meter, electric_current = ampere, mass = kilogram>, f32>> for Reflectivity
Source§impl From<f32> for Reflectivity
impl From<f32> for Reflectivity
Source§impl<__RhsT> Mul<__RhsT> for Reflectivity
impl<__RhsT> Mul<__RhsT> for Reflectivity
Source§type Output = Reflectivity
type Output = Reflectivity
The resulting type after applying the
* operator.Source§fn mul(self, rhs: __RhsT) -> Reflectivity
fn mul(self, rhs: __RhsT) -> Reflectivity
Performs the
* operation. Read moreSource§impl PartialEq for Reflectivity
impl PartialEq for Reflectivity
Source§impl Serialize for Reflectivity
impl Serialize for Reflectivity
Source§impl Sub for Reflectivity
impl Sub for Reflectivity
Source§type Output = Reflectivity
type Output = Reflectivity
The resulting type after applying the
- operator.Source§fn sub(self, rhs: Reflectivity) -> Reflectivity
fn sub(self, rhs: Reflectivity) -> Reflectivity
Performs the
- operation. Read moreimpl Copy for Reflectivity
impl StructuralPartialEq for Reflectivity
Auto Trait Implementations§
impl Freeze for Reflectivity
impl !RefUnwindSafe for Reflectivity
impl Send for Reflectivity
impl Sync for Reflectivity
impl Unpin for Reflectivity
impl !UnwindSafe for Reflectivity
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<T> ElementType for T
impl<T> ElementType for T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more