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
sourceimpl Clone for CatalogCustomAttributeDefinitionNumberConfig
impl Clone for CatalogCustomAttributeDefinitionNumberConfig
sourcefn clone(&self) -> CatalogCustomAttributeDefinitionNumberConfig
fn clone(&self) -> CatalogCustomAttributeDefinitionNumberConfig
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Default for CatalogCustomAttributeDefinitionNumberConfig
impl Default for CatalogCustomAttributeDefinitionNumberConfig
sourcefn default() -> CatalogCustomAttributeDefinitionNumberConfig
fn default() -> CatalogCustomAttributeDefinitionNumberConfig
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for CatalogCustomAttributeDefinitionNumberConfig
impl<'de> Deserialize<'de> for CatalogCustomAttributeDefinitionNumberConfig
sourcefn 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
sourceimpl PartialEq<CatalogCustomAttributeDefinitionNumberConfig> for CatalogCustomAttributeDefinitionNumberConfig
impl PartialEq<CatalogCustomAttributeDefinitionNumberConfig> for CatalogCustomAttributeDefinitionNumberConfig
sourcefn eq(&self, other: &CatalogCustomAttributeDefinitionNumberConfig) -> bool
fn eq(&self, other: &CatalogCustomAttributeDefinitionNumberConfig) -> bool
impl Eq for CatalogCustomAttributeDefinitionNumberConfig
impl StructuralEq for CatalogCustomAttributeDefinitionNumberConfig
impl StructuralPartialEq for CatalogCustomAttributeDefinitionNumberConfig
Auto Trait Implementations
impl RefUnwindSafe for CatalogCustomAttributeDefinitionNumberConfig
impl Send for CatalogCustomAttributeDefinitionNumberConfig
impl Sync for CatalogCustomAttributeDefinitionNumberConfig
impl Unpin for CatalogCustomAttributeDefinitionNumberConfig
impl UnwindSafe for CatalogCustomAttributeDefinitionNumberConfig
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.