pub(super) struct RiderConfig {Show 16 fields
pub(super) apocalypse_now: bool,
pub(super) apocalypse_duration_ms: u32,
pub(super) dnd_period_ms: u32,
pub(super) heart_strike_cooldown_ms: u32,
pub(super) icy_fury: bool,
pub(super) fury_extension_ms: u32,
pub(super) fury_max_extension_ms: u32,
pub(super) fury_rp_threshold: f64,
pub(super) let_terror_reign: bool,
pub(super) nazgrim_strike_cooldown_ms: u32,
pub(super) nazgrims_conquest: bool,
pub(super) obliterate_cooldown_ms: u32,
pub(super) random_duration_ms: u32,
pub(super) undeath_duration_ms: u32,
pub(super) whitemane_death_coil_cooldown_ms: u32,
pub(super) whitemanes_famine: bool,
}Fields§
§apocalypse_now: bool§apocalypse_duration_ms: u32§dnd_period_ms: u32§heart_strike_cooldown_ms: u32§icy_fury: bool§fury_extension_ms: u32§fury_max_extension_ms: u32§fury_rp_threshold: f64§let_terror_reign: bool§nazgrim_strike_cooldown_ms: u32§nazgrims_conquest: bool§obliterate_cooldown_ms: u32§random_duration_ms: u32§undeath_duration_ms: u32§whitemane_death_coil_cooldown_ms: u32§whitemanes_famine: boolTrait Implementations§
Source§impl Clone for RiderConfig
impl Clone for RiderConfig
Source§fn clone(&self) -> RiderConfig
fn clone(&self) -> RiderConfig
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 RiderConfig
impl Debug for RiderConfig
impl Copy for RiderConfig
Auto Trait Implementations§
impl Freeze for RiderConfig
impl RefUnwindSafe for RiderConfig
impl Send for RiderConfig
impl Sync for RiderConfig
impl Unpin for RiderConfig
impl UnsafeUnpin for RiderConfig
impl UnwindSafe for RiderConfig
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