pub trait BorrowReqMut<T> {
// Required method
fn borrow_mut(&mut self) -> &mut T;
}Expand description
trait for Borrow &mut T from &mut Self. used for foreign types (from xitca-http pov) that can be impl with BorrowMut trait.
pub trait BorrowReqMut<T> {
// Required method
fn borrow_mut(&mut self) -> &mut T;
}trait for Borrow &mut T from &mut Self. used for foreign types (from xitca-http pov) that can be impl with BorrowMut trait.