pub struct StatefulEncryptedBodyBuilder<T, S> { /* private fields */ }Expand description
Route builder carrying shared state S and an authenticated-encrypted request body
of type T (ChaCha20-Poly1305).
Obtained from EncryptedBodyBuilder::state or StatefulSocketBuilder::encryption.
Implementations§
Source§impl<T, S> StatefulEncryptedBodyBuilder<T, S>
impl<T, S> StatefulEncryptedBodyBuilder<T, S>
Auto Trait Implementations§
impl<T, S> Freeze for StatefulEncryptedBodyBuilder<T, S>where
S: Freeze,
impl<T, S> RefUnwindSafe for StatefulEncryptedBodyBuilder<T, S>where
S: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, S> Send for StatefulEncryptedBodyBuilder<T, S>
impl<T, S> Sync for StatefulEncryptedBodyBuilder<T, S>
impl<T, S> Unpin for StatefulEncryptedBodyBuilder<T, S>
impl<T, S> UnsafeUnpin for StatefulEncryptedBodyBuilder<T, S>where
S: UnsafeUnpin,
impl<T, S> UnwindSafe for StatefulEncryptedBodyBuilder<T, S>where
S: UnwindSafe,
T: UnwindSafe,
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