pub trait Assign {
// Required methods
fn expand_assign(&mut self, scope: &mut Scope, value: Self);
fn init_mut(&self, scope: &mut Scope) -> Self;
}Required Methods§
Sourcefn expand_assign(&mut self, scope: &mut Scope, value: Self)
fn expand_assign(&mut self, scope: &mut Scope, value: Self)
Assign value to self in scope.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".