pub struct AutoArray<'a: 'b, 'b, T: TypeArray> { /* private fields */ }
Expand description
Auto-release wrapper for pointer-based generic arrays.
This wrapper is used to wrap pointers returned by GetFrom
impl.
AutoArray provides automatic array release through a call to appropriate
Release
Implementations
sourceimpl<'a, 'b, T: TypeArray> AutoArray<'a, 'b, T>
impl<'a, 'b, T: TypeArray> AutoArray<'a, 'b, T>
Trait Implementations
Auto Trait Implementations
impl<'a, 'b, T> RefUnwindSafe for AutoArray<'a, 'b, T> where
T: RefUnwindSafe,
impl<'a, 'b, T> !Send for AutoArray<'a, 'b, T>
impl<'a, 'b, T> !Sync for AutoArray<'a, 'b, T>
impl<'a, 'b, T> Unpin for AutoArray<'a, 'b, T> where
'a: 'b,
impl<'a, 'b, T> UnwindSafe for AutoArray<'a, 'b, T> where
T: RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more