pub(crate) struct AoeConfig {
pub(crate) is_aoe: bool,
pub(crate) split: bool,
pub(crate) chain_targeting: bool,
pub(crate) chain_multiplier: f64,
pub(crate) base_mult: f64,
pub(crate) reduced_targets: u8,
pub(crate) full_targets: u8,
pub(crate) max_targets: u8,
}Fields§
§is_aoe: bool§split: bool§chain_targeting: bool§chain_multiplier: f64§base_mult: f64§reduced_targets: u8§full_targets: u8§max_targets: u8Trait Implementations§
impl Copy for AoeConfig
Auto Trait Implementations§
impl Freeze for AoeConfig
impl RefUnwindSafe for AoeConfig
impl Send for AoeConfig
impl Sync for AoeConfig
impl Unpin for AoeConfig
impl UnsafeUnpin for AoeConfig
impl UnwindSafe for AoeConfig
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