pub trait TryAsMut<T> {
    fn try_as_mut(&mut self) -> Option<&mut T>;
}
Expand description

A version of AsMut<T> that can fail.

Required Methods

Implementors