#[non_exhaustive]pub enum RandPropPointsUse {
StatAllocation,
ItemEffect,
}Expand description
Consumer policy for selecting a RandPropPoints quality column.
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.
StatAllocation
Scale the allocated stats stored directly on an item.
ItemEffect
Scale a coefficient-valued effect contributed by an item.
Trait Implementations§
Source§impl Clone for RandPropPointsUse
impl Clone for RandPropPointsUse
Source§fn clone(&self) -> RandPropPointsUse
fn clone(&self) -> RandPropPointsUse
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 RandPropPointsUse
impl Debug for RandPropPointsUse
Source§impl PartialEq for RandPropPointsUse
impl PartialEq for RandPropPointsUse
impl Copy for RandPropPointsUse
impl Eq for RandPropPointsUse
impl StructuralPartialEq for RandPropPointsUse
Auto Trait Implementations§
impl Freeze for RandPropPointsUse
impl RefUnwindSafe for RandPropPointsUse
impl Send for RandPropPointsUse
impl Sync for RandPropPointsUse
impl Unpin for RandPropPointsUse
impl UnsafeUnpin for RandPropPointsUse
impl UnwindSafe for RandPropPointsUse
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