Struct sep2_common::packages::der::UnsignedFixedPointType
source · pub struct UnsignedFixedPointType {
pub multiplier: PowerOfTenMultiplierType,
pub value: Uint16,
}
Available on crate feature
der
only.Expand description
Abstract type for specifying an unsigned fixed-point value without a given unit of measure.
Fields§
§multiplier: PowerOfTenMultiplierType
Specifies exponent of uom.
value: Uint16
Dimensionless value
Trait Implementations§
source§impl Clone for UnsignedFixedPointType
impl Clone for UnsignedFixedPointType
source§fn clone(&self) -> UnsignedFixedPointType
fn clone(&self) -> UnsignedFixedPointType
Returns a copy 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 UnsignedFixedPointType
impl Debug for UnsignedFixedPointType
source§impl Default for UnsignedFixedPointType
impl Default for UnsignedFixedPointType
source§fn default() -> UnsignedFixedPointType
fn default() -> UnsignedFixedPointType
Returns the “default value” for a type. Read more
source§impl PartialEq<UnsignedFixedPointType> for UnsignedFixedPointType
impl PartialEq<UnsignedFixedPointType> for UnsignedFixedPointType
source§fn eq(&self, other: &UnsignedFixedPointType) -> bool
fn eq(&self, other: &UnsignedFixedPointType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl YaDeserialize for UnsignedFixedPointType
impl YaDeserialize for UnsignedFixedPointType
source§impl YaSerialize for UnsignedFixedPointType
impl YaSerialize for UnsignedFixedPointType
fn name() -> &'static strwhere Self: Sized,
fn serialize<W: Write>(&self, writer: &mut Serializer<W>) -> Result<(), String>where Self: Sized,
fn serialize_attributes( &self, source_attributes: Vec<OwnedAttribute>, source_namespace: Namespace ) -> Result<(Vec<OwnedAttribute>, Namespace), String>where Self: Sized,
impl Eq for UnsignedFixedPointType
impl StructuralEq for UnsignedFixedPointType
impl StructuralPartialEq for UnsignedFixedPointType
Auto Trait Implementations§
impl RefUnwindSafe for UnsignedFixedPointType
impl Send for UnsignedFixedPointType
impl Sync for UnsignedFixedPointType
impl Unpin for UnsignedFixedPointType
impl UnwindSafe for UnsignedFixedPointType
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