pub struct EffectMod {
pub func: String,
pub args: HashMap<String, Primitive>,
}
Expand description
Dogma effect modifier data.
Fields§
§func: String
Function which the effect modifier calls to apply its modification.
args: HashMap<String, Primitive>
Arguments to the function call.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EffectMod
impl RefUnwindSafe for EffectMod
impl Send for EffectMod
impl Sync for EffectMod
impl Unpin for EffectMod
impl UnwindSafe for EffectMod
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