pub trait HasExtractorMut {
type ExtractorMut<'a>
where Self: 'a;
// Required method
fn extractor_mut(&mut self) -> Self::ExtractorMut<'_>;
}Required Associated Types§
type ExtractorMut<'a> where Self: 'a
Required Methods§
fn extractor_mut(&mut self) -> Self::ExtractorMut<'_>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.