Enum Paint

Source
#[repr(u32)]
pub enum Paint {
Show 29 variants AColorSimilarToSlate = 3_100_495, ADeepCommitmentToPurple = 8_208_497, ADistinctiveLackOfHue = 1_315_860, AMannsMint = 12_377_523, AfterEight = 2_960_676, AgedMoustacheGrey = 8_289_918, AnExtraordinaryAbundanceOfTinge = 15_132_390, AustraliumGold = 15_185_211, ColorNo216190216 = 14_204_632, DarkSalmonInjustice = 15_308_410, DrablyOlive = 8_421_376, IndubitablyGreen = 7_511_618, MannCoOrange = 13_595_446, Muskelmannbraun = 10_843_461, NobleHattersViolet = 5_322_826, PeculiarlyDrabTincture = 12_955_537, PinkAsHell = 16_738_740, RadiganConagherBrown = 6_901_050, TheBitterTasteOfDefeatAndLime = 3_329_330, TheColorOfAGentlemannsBusinessPants = 15_787_660, YeOldeRusticColour = 8_154_199, ZepheniahsGreed = 4_345_659, AnAirOfDebonair = 6_637_376, BalaclavasAreForever = 3_874_595, CreamSpirit = 12_807_213, OperatorsOveralls = 4_732_984, TeamSpirit = 12_073_019, TheValueOfTeamwork = 8_400_928, WaterloggedLabCoat = 11_049_612,
}
Expand description

Paint. repr values are mapped to the corresponding color. For team paints this is the color for RED team.

Variants§

§

AColorSimilarToSlate = 3_100_495

§

ADeepCommitmentToPurple = 8_208_497

§

ADistinctiveLackOfHue = 1_315_860

§

AMannsMint = 12_377_523

§

AfterEight = 2_960_676

§

AgedMoustacheGrey = 8_289_918

§

AnExtraordinaryAbundanceOfTinge = 15_132_390

§

AustraliumGold = 15_185_211

§

ColorNo216190216 = 14_204_632

§

DarkSalmonInjustice = 15_308_410

§

DrablyOlive = 8_421_376

§

IndubitablyGreen = 7_511_618

§

MannCoOrange = 13_595_446

§

Muskelmannbraun = 10_843_461

§

NobleHattersViolet = 5_322_826

§

PeculiarlyDrabTincture = 12_955_537

§

PinkAsHell = 16_738_740

§

RadiganConagherBrown = 6_901_050

§

TheBitterTasteOfDefeatAndLime = 3_329_330

§

TheColorOfAGentlemannsBusinessPants = 15_787_660

§

YeOldeRusticColour = 8_154_199

§

ZepheniahsGreed = 4_345_659

§

AnAirOfDebonair = 6_637_376

§

BalaclavasAreForever = 3_874_595

§

CreamSpirit = 12_807_213

§

OperatorsOveralls = 4_732_984

§

TeamSpirit = 12_073_019

§

TheValueOfTeamwork = 8_400_928

§

WaterloggedLabCoat = 11_049_612

Implementations§

Source§

impl Paint

Source

pub fn color(&self) -> u32

Source

pub fn from_color(color: u32) -> Option<Self>

Converts a hexadecimal color into a Paint.

§Examples
use tf2_enum::Paint;
 
assert_eq!(Paint::from_color(0x7D4071).unwrap(), Paint::ADeepCommitmentToPurple);
Source

pub fn from_color_str(color: &str) -> Option<Self>

Converts a hexadecimal color string into a Paint.

§Examples
use tf2_enum::Paint;
 
assert_eq!(Paint::from_color_str("#7D4071").unwrap(), Paint::ADeepCommitmentToPurple);
Source

pub fn colors(&self) -> (u32, u32)

Gets the colors for both teams. The RED team appears first. For non-team-color paints the color will be the same.

Source

pub fn is_team_paint(&self) -> bool

Determines if this paint is a team-colored paint.

Source

pub fn from_defindex(defindex: u32) -> Option<Self>

Converts a defindex into its related Paint, if it exists.

Source

pub fn defindex(&self) -> u32

Gets the defindex related to this Paint.

Trait Implementations§

Source§

impl Attribute for Paint

Source§

const DEFINDEX: u32 = 142u32

Source§

impl Clone for Paint

Source§

fn clone(&self) -> Paint

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Paint

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for Paint

Source§

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 Paint

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl EnumCount for Paint

Source§

const COUNT: usize = 29usize

Source§

impl From<Paint> for u32

Source§

fn from(enum_value: Paint) -> Self

Converts to this type from the input type.
Source§

impl FromStr for Paint

Source§

type Err = ParseError

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<Paint, <Self as FromStr>::Err>

Parses a string s to return a value of this type. Read more
Source§

impl Hash for Paint

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl IntoEnumIterator for Paint

Source§

type Iterator = PaintIter

Source§

fn iter() -> PaintIter

Source§

impl Ord for Paint

Source§

fn cmp(&self, other: &Paint) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for Paint

Source§

fn eq(&self, other: &Paint) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for Paint

Source§

fn partial_cmp(&self, other: &Paint) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Serialize for Paint

Source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl TryFrom<&str> for Paint

Source§

type Error = ParseError

The type returned in the event of a conversion error.
Source§

fn try_from(s: &str) -> Result<Paint, <Self as TryFrom<&str>>::Error>

Performs the conversion.
Source§

impl TryFrom<u32> for Paint

Source§

type Error = TryFromPrimitiveError<Paint>

The type returned in the event of a conversion error.
Source§

fn try_from(number: u32) -> Result<Self, TryFromPrimitiveError<Self>>

Performs the conversion.
Source§

impl TryFromPrimitive for Paint

Source§

impl Copy for Paint

Source§

impl Eq for Paint

Source§

impl StructuralPartialEq for Paint

Auto Trait Implementations§

§

impl Freeze for Paint

§

impl RefUnwindSafe for Paint

§

impl Send for Paint

§

impl Sync for Paint

§

impl Unpin for Paint

§

impl UnwindSafe for Paint

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,