#[non_exhaustive]pub enum FormingMethod {
UniaxialPressing,
ColdIsostaticPressing,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for FormingMethod
impl Clone for FormingMethod
Source§fn clone(&self) -> FormingMethod
fn clone(&self) -> FormingMethod
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FormingMethod
Source§impl Debug for FormingMethod
impl Debug for FormingMethod
Source§impl<'de> Deserialize<'de> for FormingMethod
impl<'de> Deserialize<'de> for FormingMethod
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
impl Eq for FormingMethod
Source§impl PartialEq for FormingMethod
impl PartialEq for FormingMethod
Source§impl Serialize for FormingMethod
impl Serialize for FormingMethod
impl StructuralPartialEq for FormingMethod
Auto Trait Implementations§
impl Freeze for FormingMethod
impl RefUnwindSafe for FormingMethod
impl Send for FormingMethod
impl Sync for FormingMethod
impl Unpin for FormingMethod
impl UnsafeUnpin for FormingMethod
impl UnwindSafe for FormingMethod
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