pub struct CatalogMeasurementUnit {
pub measurement_unit: Option<MeasurementUnit>,
pub precision: Option<i32>,
}
Expand description
Represents the unit used to measure a CatalogItemVariation
and specifies the precision for
decimal quantities.
Fields§
§measurement_unit: Option<MeasurementUnit>
Indicates the unit used to measure the quantity of a catalog item variation.
precision: Option<i32>
An integer between 0 and 5 that represents the maximum number of positions allowed after the decimal in quantities measured with this unit. For example:
- if the precision is 0, the quantity can be 1, 2, 3, etc.
- if the precision is 1, the quantity can be 0.1, 0.2, etc.
- if the precision is 2, the quantity can be 0.01, 0.12, etc. Default: 3
Trait Implementations§
Source§impl Clone for CatalogMeasurementUnit
impl Clone for CatalogMeasurementUnit
Source§fn clone(&self) -> CatalogMeasurementUnit
fn clone(&self) -> CatalogMeasurementUnit
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CatalogMeasurementUnit
impl Debug for CatalogMeasurementUnit
Source§impl Default for CatalogMeasurementUnit
impl Default for CatalogMeasurementUnit
Source§fn default() -> CatalogMeasurementUnit
fn default() -> CatalogMeasurementUnit
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CatalogMeasurementUnit
impl<'de> Deserialize<'de> for CatalogMeasurementUnit
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 PartialEq for CatalogMeasurementUnit
impl PartialEq for CatalogMeasurementUnit
Source§impl Serialize for CatalogMeasurementUnit
impl Serialize for CatalogMeasurementUnit
impl Eq for CatalogMeasurementUnit
impl StructuralPartialEq for CatalogMeasurementUnit
Auto Trait Implementations§
impl Freeze for CatalogMeasurementUnit
impl RefUnwindSafe for CatalogMeasurementUnit
impl Send for CatalogMeasurementUnit
impl Sync for CatalogMeasurementUnit
impl Unpin for CatalogMeasurementUnit
impl UnwindSafe for CatalogMeasurementUnit
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.