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§
Sourcefn as_mut_lt_ptr<'a>(&'a mut self) -> MutLtPtr<'a, Self::Target>
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.