pub enum InfusionUpgradeFlags {
Enrichment,
Infusion,
Defense,
Offense,
Utility,
Agony,
}Variants§
Trait Implementations§
Source§impl Clone for InfusionUpgradeFlags
impl Clone for InfusionUpgradeFlags
Source§fn clone(&self) -> InfusionUpgradeFlags
fn clone(&self) -> InfusionUpgradeFlags
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 InfusionUpgradeFlags
impl Debug for InfusionUpgradeFlags
Source§impl<'de> Deserialize<'de> for InfusionUpgradeFlags
impl<'de> Deserialize<'de> for InfusionUpgradeFlags
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 Ord for InfusionUpgradeFlags
impl Ord for InfusionUpgradeFlags
Source§fn cmp(&self, other: &InfusionUpgradeFlags) -> Ordering
fn cmp(&self, other: &InfusionUpgradeFlags) -> 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 InfusionUpgradeFlags
impl PartialEq for InfusionUpgradeFlags
Source§impl PartialOrd for InfusionUpgradeFlags
impl PartialOrd for InfusionUpgradeFlags
Source§impl Serialize for InfusionUpgradeFlags
impl Serialize for InfusionUpgradeFlags
impl Eq for InfusionUpgradeFlags
impl StructuralPartialEq for InfusionUpgradeFlags
Auto Trait Implementations§
impl Freeze for InfusionUpgradeFlags
impl RefUnwindSafe for InfusionUpgradeFlags
impl Send for InfusionUpgradeFlags
impl Sync for InfusionUpgradeFlags
impl Unpin for InfusionUpgradeFlags
impl UnwindSafe for InfusionUpgradeFlags
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more