pub enum RecordCipher {
Aes256Gcm,
}Variants§
Aes256Gcm
Trait Implementations§
Source§impl Clone for RecordCipher
impl Clone for RecordCipher
Source§fn clone(&self) -> RecordCipher
fn clone(&self) -> RecordCipher
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RecordCipher
Source§impl Debug for RecordCipher
impl Debug for RecordCipher
Source§impl<'de> Deserialize<'de> for RecordCipher
impl<'de> Deserialize<'de> for RecordCipher
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for RecordCipher
Source§impl PartialEq for RecordCipher
impl PartialEq for RecordCipher
Source§impl Serialize for RecordCipher
impl Serialize for RecordCipher
impl StructuralPartialEq for RecordCipher
Auto Trait Implementations§
impl Freeze for RecordCipher
impl RefUnwindSafe for RecordCipher
impl Send for RecordCipher
impl Sync for RecordCipher
impl Unpin for RecordCipher
impl UnsafeUnpin for RecordCipher
impl UnwindSafe for RecordCipher
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