pub enum PlatingThickness {
Bare,
Oz05,
Oz1,
Oz15,
Oz2,
Oz25,
Oz3,
}Expand description
Plating thickness options.
Variants§
Implementations§
Source§impl PlatingThickness
impl PlatingThickness
Sourcepub fn thickness_mils(self) -> f64
pub fn thickness_mils(self) -> f64
Plating thickness in mils.
Trait Implementations§
Source§impl Clone for PlatingThickness
impl Clone for PlatingThickness
Source§fn clone(&self) -> PlatingThickness
fn clone(&self) -> PlatingThickness
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 PlatingThickness
impl Debug for PlatingThickness
Source§impl<'de> Deserialize<'de> for PlatingThickness
impl<'de> Deserialize<'de> for PlatingThickness
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 PlatingThickness
impl PartialEq for PlatingThickness
Source§impl Serialize for PlatingThickness
impl Serialize for PlatingThickness
impl Copy for PlatingThickness
impl StructuralPartialEq for PlatingThickness
Auto Trait Implementations§
impl Freeze for PlatingThickness
impl RefUnwindSafe for PlatingThickness
impl Send for PlatingThickness
impl Sync for PlatingThickness
impl Unpin for PlatingThickness
impl UnsafeUnpin for PlatingThickness
impl UnwindSafe for PlatingThickness
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