pub struct Context<'c, C: Cipher<'c> + CipherSized> { /* private fields */ }
Expand description
Holds the state information for a cipher operation. Allows suspending/resuming of cipher operations.
Auto Trait Implementations§
impl<'c, C> Freeze for Context<'c, C>
impl<'c, C> RefUnwindSafe for Context<'c, C>where
C: RefUnwindSafe,
impl<'c, C> Send for Context<'c, C>where
C: Sync,
impl<'c, C> Sync for Context<'c, C>where
C: Sync,
impl<'c, C> Unpin for Context<'c, C>
impl<'c, C> UnwindSafe for Context<'c, C>where
C: 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