pub struct CatalogCustomAttributeDefinitionNumberConfig {
pub precision: Option<i32>,
}
Expand description
Configuration associated with Custom Attribute Definitions of type NUMBER
.
Fields§
§precision: Option<i32>
An integer between 0 and 5 that represents the maximum number of positions allowed after the decimal in number custom attribute values 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: 5
Trait Implementations§
Source§impl Clone for CatalogCustomAttributeDefinitionNumberConfig
impl Clone for CatalogCustomAttributeDefinitionNumberConfig
Source§fn clone(&self) -> CatalogCustomAttributeDefinitionNumberConfig
fn clone(&self) -> CatalogCustomAttributeDefinitionNumberConfig
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 Default for CatalogCustomAttributeDefinitionNumberConfig
impl Default for CatalogCustomAttributeDefinitionNumberConfig
Source§fn default() -> CatalogCustomAttributeDefinitionNumberConfig
fn default() -> CatalogCustomAttributeDefinitionNumberConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CatalogCustomAttributeDefinitionNumberConfig
impl<'de> Deserialize<'de> for CatalogCustomAttributeDefinitionNumberConfig
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 CatalogCustomAttributeDefinitionNumberConfig
impl PartialEq for CatalogCustomAttributeDefinitionNumberConfig
Source§fn eq(&self, other: &CatalogCustomAttributeDefinitionNumberConfig) -> bool
fn eq(&self, other: &CatalogCustomAttributeDefinitionNumberConfig) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for CatalogCustomAttributeDefinitionNumberConfig
impl StructuralPartialEq for CatalogCustomAttributeDefinitionNumberConfig
Auto Trait Implementations§
impl Freeze for CatalogCustomAttributeDefinitionNumberConfig
impl RefUnwindSafe for CatalogCustomAttributeDefinitionNumberConfig
impl Send for CatalogCustomAttributeDefinitionNumberConfig
impl Sync for CatalogCustomAttributeDefinitionNumberConfig
impl Unpin for CatalogCustomAttributeDefinitionNumberConfig
impl UnwindSafe for CatalogCustomAttributeDefinitionNumberConfig
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.