pub trait HasModify {
type Modify: Modify;
// Required method
fn get_modify(&mut self) -> &mut Self::Modify;
}
Expand description
Trait for types that can supply a reference that can be modified.
Extractor types T
that implement this trait can be used with Modified
.
Required Associated Types§
Required Methods§
Sourcefn get_modify(&mut self) -> &mut Self::Modify
fn get_modify(&mut self) -> &mut Self::Modify
Get the inner value