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