Trait reborrow::AsGeneralizedMut
source · pub trait AsGeneralizedMut<'short, Target, _Outlives: Seal<&'short Self> = &'short Self>where
Self: 'short,{
// Required method
fn as_generalized_mut(&'short mut self) -> Target;
}Expand description
This trait is similar to std::convert::AsMut, but works with generalized reference
types, instead of being limited to native Rust references.