pub trait UnConsMut {
type Head<'h>
where Self: 'h;
type Tail<'t>
where Self: 't;
// Required method
fn uncons_mut<'a>(&'a mut self) -> (Self::Head<'a>, Self::Tail<'a>);
}
Required Associated Types§
Required Methods§
fn uncons_mut<'a>(&'a mut self) -> (Self::Head<'a>, Self::Tail<'a>)
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.