Enum tf2_enum::FootprintsSpell
source · [−]#[repr(u32)]
pub enum FootprintsSpell {
TeamSpiritFootprints,
GangreenFootprints,
CorpseGrayFootprints,
ViolentVioletFootprints,
RottenOrangeFootprints,
BruisedPurpleFootprints,
HeadlessHorseshoes,
}
Variants
TeamSpiritFootprints
GangreenFootprints
CorpseGrayFootprints
ViolentVioletFootprints
RottenOrangeFootprints
BruisedPurpleFootprints
HeadlessHorseshoes
Trait Implementations
sourceimpl Clone for FootprintsSpell
impl Clone for FootprintsSpell
sourcefn clone(&self) -> FootprintsSpell
fn clone(&self) -> FootprintsSpell
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 more
sourceimpl Debug for FootprintsSpell
impl Debug for FootprintsSpell
sourceimpl<'de> Deserialize<'de> for FootprintsSpell
impl<'de> Deserialize<'de> for FootprintsSpell
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 Display for FootprintsSpell
impl Display for FootprintsSpell
sourceimpl From<FootprintsSpell> for u32
impl From<FootprintsSpell> for u32
sourcefn from(enum_value: FootprintsSpell) -> Self
fn from(enum_value: FootprintsSpell) -> Self
Converts to this type from the input type.
sourceimpl FromStr for FootprintsSpell
impl FromStr for FootprintsSpell
type Err = ParseError
type Err = ParseError
The associated error which can be returned from parsing.
sourceimpl Hash for FootprintsSpell
impl Hash for FootprintsSpell
sourceimpl IntoEnumIterator for FootprintsSpell
impl IntoEnumIterator for FootprintsSpell
sourceimpl PartialEq<FootprintsSpell> for FootprintsSpell
impl PartialEq<FootprintsSpell> for FootprintsSpell
sourceimpl Serialize for FootprintsSpell
impl Serialize for FootprintsSpell
sourceimpl TryFrom<u32> for FootprintsSpell
impl TryFrom<u32> for FootprintsSpell
type Error = TryFromPrimitiveError<FootprintsSpell>
type Error = TryFromPrimitiveError<FootprintsSpell>
The type returned in the event of a conversion error.
sourcefn try_from(number: u32) -> Result<Self, TryFromPrimitiveError<Self>>
fn try_from(number: u32) -> Result<Self, TryFromPrimitiveError<Self>>
Performs the conversion.
sourceimpl TryFromPrimitive for FootprintsSpell
impl TryFromPrimitive for FootprintsSpell
type Primitive = u32
const NAME: &'static str = "FootprintsSpell"
fn try_from_primitive(
number: Self::Primitive
) -> Result<Self, TryFromPrimitiveError<Self>>
impl Copy for FootprintsSpell
impl Eq for FootprintsSpell
impl StructuralEq for FootprintsSpell
impl StructuralPartialEq for FootprintsSpell
Auto Trait Implementations
impl RefUnwindSafe for FootprintsSpell
impl Send for FootprintsSpell
impl Sync for FootprintsSpell
impl Unpin for FootprintsSpell
impl UnwindSafe for FootprintsSpell
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more