AsMutLtPtr

Trait AsMutLtPtr 

Source
pub trait AsMutLtPtr: AsLtPtr {
    // Required method
    fn as_mut_lt_ptr<'a>(&'a mut self) -> MutLtPtr<'a, Self::Target>;
}
Expand description

Trait for conversion into a MutLtPtr.

Required Methods§

Source

fn as_mut_lt_ptr<'a>(&'a mut self) -> MutLtPtr<'a, Self::Target>

Returns a pointer as if by as_ptr on a type that implements this, but with a bound lifetime.

Implementations on Foreign Types§

Source§

impl<T> AsMutLtPtr for [T]

Source§

fn as_mut_lt_ptr(&mut self) -> MutLtPtr<'_, T>

Implementors§