pub struct AutoArray<'a, 'b, T>where
'a: '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§
Source§impl<'a, 'b, T> AutoArray<'a, 'b, T>where
T: TypeArray,
impl<'a, 'b, T> AutoArray<'a, 'b, T>where
T: TypeArray,
Trait Implementations§
Auto Trait Implementations§
impl<'a, 'b, T> Freeze for AutoArray<'a, 'b, T>
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>
impl<'a, 'b, T> UnwindSafe for AutoArray<'a, 'b, 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