pub struct VecHandle<T> {
ptr: NonNull<[T]>,
}Fields§
§ptr: NonNull<[T]>Trait Implementations§
Source§impl<'a, T> BorrowPlace<&'a [T]> for VecHandle<T>
impl<'a, T> BorrowPlace<&'a [T]> for VecHandle<T>
Source§const ACCESS: AccessKind = AccessKind::Shared
const ACCESS: AccessKind = AccessKind::Shared
The access permissions to the place required by
Self::borrow.Source§type Timing = Lifetime<'a>
type Timing = Lifetime<'a>
The timing of the access permissions of
Self::borrow.Auto Trait Implementations§
impl<T> !Send for VecHandle<T>
impl<T> !Sync for VecHandle<T>
impl<T> Freeze for VecHandle<T>
impl<T> RefUnwindSafe for VecHandle<T>where
T: RefUnwindSafe,
impl<T> Unpin for VecHandle<T>
impl<T> UnsafeUnpin for VecHandle<T>
impl<T> UnwindSafe for VecHandle<T>where
T: RefUnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more