pub struct FlashlightCatch {
pub size_multiplier: Option<f64>,
pub combo_based_size: Option<bool>,
}Expand description
Restricted view area.
Fields§
§size_multiplier: Option<f64>Multiplier applied to the default flashlight size.
combo_based_size: Option<bool>Decrease the flashlight size as combo increases.
Implementations§
Source§impl FlashlightCatch
impl FlashlightCatch
Sourcepub const fn acronym() -> Acronym
pub const fn acronym() -> Acronym
The acronym of FlashlightCatch
Sourcepub fn incompatible_mods() -> impl Iterator<Item = Acronym>
pub fn incompatible_mods() -> impl Iterator<Item = Acronym>
Iterator of Acronym for mods that are incompatible with FlashlightCatch
Sourcepub const fn description() -> &'static str
pub const fn description() -> &'static str
The description of FlashlightCatch
Sourcepub const fn kind() -> GameModKind
pub const fn kind() -> GameModKind
The GameModKind of FlashlightCatch
Sourcepub const fn bits() -> u32
pub const fn bits() -> u32
Bit value of FlashlightCatch
Trait Implementations§
Source§impl Clone for FlashlightCatch
impl Clone for FlashlightCatch
Source§fn clone(&self) -> FlashlightCatch
fn clone(&self) -> FlashlightCatch
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 FlashlightCatch
impl Debug for FlashlightCatch
Source§impl Default for FlashlightCatch
impl Default for FlashlightCatch
Source§fn default() -> FlashlightCatch
fn default() -> FlashlightCatch
Returns the “default value” for a type. Read more
Source§impl PartialEq for FlashlightCatch
impl PartialEq for FlashlightCatch
Source§impl Serialize for FlashlightCatch
impl Serialize for FlashlightCatch
Source§fn serialize<S>(
&self,
s: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
s: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for FlashlightCatch
Auto Trait Implementations§
impl Freeze for FlashlightCatch
impl RefUnwindSafe for FlashlightCatch
impl Send for FlashlightCatch
impl Sync for FlashlightCatch
impl Unpin for FlashlightCatch
impl UnwindSafe for FlashlightCatch
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