pub(super) struct UnholyConfig {
pub(super) apocalypse_runeforge: bool,
pub(super) blightburst: Option<BlightburstConfig>,
pub(super) eternal_agony_extension_ms: u32,
pub(super) forbidden_knowledge_ready_stacks: i32,
pub(super) forbidden_knowledge: Option<ForbiddenKnowledgeConfig>,
pub(super) gargoyle: Option<GargoyleTimings>,
pub(super) grave_mastery: bool,
pub(super) riders: Option<RiderConfig>,
pub(super) unholy_devotion_duration_ms: u32,
}Fields§
§apocalypse_runeforge: bool§blightburst: Option<BlightburstConfig>§eternal_agony_extension_ms: u32§forbidden_knowledge_ready_stacks: i32§forbidden_knowledge: Option<ForbiddenKnowledgeConfig>§gargoyle: Option<GargoyleTimings>§grave_mastery: bool§riders: Option<RiderConfig>§unholy_devotion_duration_ms: u32Trait Implementations§
Source§impl Clone for UnholyConfig
impl Clone for UnholyConfig
Source§fn clone(&self) -> UnholyConfig
fn clone(&self) -> UnholyConfig
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 UnholyConfig
impl Debug for UnholyConfig
Source§impl Default for UnholyConfig
impl Default for UnholyConfig
Source§fn default() -> UnholyConfig
fn default() -> UnholyConfig
Returns the “default value” for a type. Read more
impl Copy for UnholyConfig
Auto Trait Implementations§
impl Freeze for UnholyConfig
impl RefUnwindSafe for UnholyConfig
impl Send for UnholyConfig
impl Sync for UnholyConfig
impl Unpin for UnholyConfig
impl UnsafeUnpin for UnholyConfig
impl UnwindSafe for UnholyConfig
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