pub enum CraftMaterialType {
Weapon,
Hat,
CraftBar,
HauntedHat,
Tool,
CraftToken,
SupplyCrate,
CraftMaterialBurned,
CraftMaterialVoodooCursed,
StrangePart,
}
Expand description
Craft material type.
Variants§
Weapon
Hat
CraftBar
HauntedHat
Tool
CraftToken
SupplyCrate
CraftMaterialBurned
CraftMaterialVoodooCursed
StrangePart
Trait Implementations§
Source§impl Clone for CraftMaterialType
impl Clone for CraftMaterialType
Source§fn clone(&self) -> CraftMaterialType
fn clone(&self) -> CraftMaterialType
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 CraftMaterialType
impl Debug for CraftMaterialType
Source§impl<'de> Deserialize<'de> for CraftMaterialType
impl<'de> Deserialize<'de> for CraftMaterialType
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 Display for CraftMaterialType
impl Display for CraftMaterialType
Source§impl FromStr for CraftMaterialType
impl FromStr for CraftMaterialType
Source§impl Hash for CraftMaterialType
impl Hash for CraftMaterialType
Source§impl IntoEnumIterator for CraftMaterialType
impl IntoEnumIterator for CraftMaterialType
Source§impl Ord for CraftMaterialType
impl Ord for CraftMaterialType
Source§fn cmp(&self, other: &CraftMaterialType) -> Ordering
fn cmp(&self, other: &CraftMaterialType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CraftMaterialType
impl PartialEq for CraftMaterialType
Source§impl PartialOrd for CraftMaterialType
impl PartialOrd for CraftMaterialType
Source§impl Serialize for CraftMaterialType
impl Serialize for CraftMaterialType
Source§impl TryFrom<&str> for CraftMaterialType
impl TryFrom<&str> for CraftMaterialType
impl Copy for CraftMaterialType
impl Eq for CraftMaterialType
impl StructuralPartialEq for CraftMaterialType
Auto Trait Implementations§
impl Freeze for CraftMaterialType
impl RefUnwindSafe for CraftMaterialType
impl Send for CraftMaterialType
impl Sync for CraftMaterialType
impl Unpin for CraftMaterialType
impl UnwindSafe for CraftMaterialType
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