struct AuraSummaryRow {Show 16 fields
driver: String,
effect: i32,
aura_subtype: i32,
chance_pct: i32,
is_passive: bool,
effect_base: f64,
proc_mask: String,
icd_ms: i32,
rppm_base_rate: f32,
rppm_flags: i32,
rppm_mods: String,
trigger_spell: i32,
class_mask: String,
labels: String,
actor_side: &'static str,
specs: usize,
}Fields§
§driver: String§effect: i32§aura_subtype: i32§chance_pct: i32§is_passive: bool§effect_base: f64§proc_mask: String§icd_ms: i32§rppm_base_rate: f32§rppm_flags: i32§rppm_mods: String§trigger_spell: i32§class_mask: String§labels: String§actor_side: &'static str§specs: usizeTrait Implementations§
Source§impl Tabled for AuraSummaryRow
impl Tabled for AuraSummaryRow
Auto Trait Implementations§
impl Freeze for AuraSummaryRow
impl RefUnwindSafe for AuraSummaryRow
impl Send for AuraSummaryRow
impl Sync for AuraSummaryRow
impl Unpin for AuraSummaryRow
impl UnsafeUnpin for AuraSummaryRow
impl UnwindSafe for AuraSummaryRow
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
§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