pub trait GetMutPtr<L> {
type Item;
// Required method
unsafe fn get_mut_ptr(&mut self, location: L) -> Self::Item;
}Required Associated Types§
Required Methods§
Sourceunsafe fn get_mut_ptr(&mut self, location: L) -> Self::Item
unsafe fn get_mut_ptr(&mut self, location: L) -> Self::Item
Get a mutable pointer to the value at location.