#[repr(u8)]pub enum ProductFinish {
Other = 0,
Matte = 1,
Satin = 2,
Polished = 3,
Rugged = 4,
Fabric = 5,
}Variants§
Other = 0
Product has some other finish not listed below.
Matte = 1
Product has a matte finish.
Satin = 2
Product has a satin finish.
Polished = 3
Product has a polished or shiny finish.
Rugged = 4
Product has a rugged finish.
Fabric = 5
Product has a fabric finish.
Implementations§
Trait Implementations§
Source§impl Clone for ProductFinish
impl Clone for ProductFinish
Source§fn clone(&self) -> ProductFinish
fn clone(&self) -> ProductFinish
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 ProductFinish
impl Debug for ProductFinish
Source§impl<'de> Deserialize<'de> for ProductFinish
impl<'de> Deserialize<'de> for ProductFinish
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 From<ProductFinish> for u8
impl From<ProductFinish> for u8
Source§fn from(val: ProductFinish) -> Self
fn from(val: ProductFinish) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ProductFinish
impl PartialEq for ProductFinish
Source§impl Serialize for ProductFinish
impl Serialize for ProductFinish
impl Copy for ProductFinish
impl Eq for ProductFinish
impl StructuralPartialEq for ProductFinish
Auto Trait Implementations§
impl Freeze for ProductFinish
impl RefUnwindSafe for ProductFinish
impl Send for ProductFinish
impl Sync for ProductFinish
impl Unpin for ProductFinish
impl UnwindSafe for ProductFinish
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