pub struct EffectSignature {
pub name: String,
pub effects: EffectRow,
pub description: Option<String>,
}Expand description
An effect signature for a function.
Fields§
§name: StringName of the function
effects: EffectRowEffect row for the function
description: Option<String>Description
Trait Implementations§
Source§impl Clone for EffectSignature
impl Clone for EffectSignature
Source§fn clone(&self) -> EffectSignature
fn clone(&self) -> EffectSignature
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 moreAuto Trait Implementations§
impl Freeze for EffectSignature
impl RefUnwindSafe for EffectSignature
impl Send for EffectSignature
impl Sync for EffectSignature
impl Unpin for EffectSignature
impl UnwindSafe for EffectSignature
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