Trait amplify::WrapperMut

source ·
pub trait WrapperMut: Wrapper {
    // Required method
    fn as_inner_mut(&mut self) -> &mut Self::Inner;
}
Expand description

Trait allowing mutable reference borrowing for the wrapped inner type.

Required Methods§

source

fn as_inner_mut(&mut self) -> &mut Self::Inner

Returns a mutable reference to the inner representation for the wrapper type

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T, const LEN: usize, const REVERSE_STR: bool> WrapperMut for Array<T, LEN, REVERSE_STR>