pub struct AesHandle<'t>(/* private fields */);Expand description
The handle to the pending AES operation.
This object is returned by AesContext::process and AesContext::process_in_place.
Dropping this handle before the operation finishes will cancel the operation.
For an example, see the documentation of AesBackend.
Implementations§
Auto Trait Implementations§
impl<'t> !RefUnwindSafe for AesHandle<'t>
impl<'t> !Send for AesHandle<'t>
impl<'t> !Sync for AesHandle<'t>
impl<'t> !UnwindSafe for AesHandle<'t>
impl<'t> Freeze for AesHandle<'t>
impl<'t> Unpin for AesHandle<'t>
impl<'t> UnsafeUnpin for AesHandle<'t>
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