pub struct SessionKeys {
pub send: Aes256Gcm,
pub recv: Aes256Gcm,
/* private fields */
}Fields§
§send: Aes256Gcm§recv: Aes256GcmImplementations§
Source§impl SessionKeys
impl SessionKeys
pub fn seal_in_place(&self, buf: &mut BytesMut) -> Option<()>
pub fn open_in_place(&self, buf: &mut BytesMut) -> Option<()>
Auto Trait Implementations§
impl !Freeze for SessionKeys
impl RefUnwindSafe for SessionKeys
impl Send for SessionKeys
impl Sync for SessionKeys
impl Unpin for SessionKeys
impl UnsafeUnpin for SessionKeys
impl UnwindSafe for SessionKeys
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