pub struct EffectPrecisionScale {
pub effect_index: u8,
pub divisor: f64,
}Expand description
One effect value the description renders at reduced magnitude.
Fields§
§effect_index: u81-based effect index, matching $sN and SimC’s effectN.
divisor: f64Power of ten the stored base value carries beyond the applied percentage.
Trait Implementations§
Source§impl Clone for EffectPrecisionScale
impl Clone for EffectPrecisionScale
Source§fn clone(&self) -> EffectPrecisionScale
fn clone(&self) -> EffectPrecisionScale
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 EffectPrecisionScale
impl Debug for EffectPrecisionScale
Source§impl PartialEq for EffectPrecisionScale
impl PartialEq for EffectPrecisionScale
impl Copy for EffectPrecisionScale
impl StructuralPartialEq for EffectPrecisionScale
Auto Trait Implementations§
impl Freeze for EffectPrecisionScale
impl RefUnwindSafe for EffectPrecisionScale
impl Send for EffectPrecisionScale
impl Sync for EffectPrecisionScale
impl Unpin for EffectPrecisionScale
impl UnsafeUnpin for EffectPrecisionScale
impl UnwindSafe for EffectPrecisionScale
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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