pub enum EncryptMethod {
None,
Pkcs,
Des,
PkcsDes,
PgpDes,
PgpDesMd5,
PemDesMd5,
}
Expand description
Field type variants for EncryptMethod
.
Variants§
None
Field variant ‘0’.
Pkcs
Field variant ‘1’.
Des
Field variant ‘2’.
PkcsDes
Field variant ‘3’.
PgpDes
Field variant ‘4’.
PgpDesMd5
Field variant ‘5’.
PemDesMd5
Field variant ‘6’.
Trait Implementations§
Source§impl Clone for EncryptMethod
impl Clone for EncryptMethod
Source§fn clone(&self) -> EncryptMethod
fn clone(&self) -> EncryptMethod
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for EncryptMethod
impl Debug for EncryptMethod
Source§impl<'a> FieldType<'a> for EncryptMethod
impl<'a> FieldType<'a> for EncryptMethod
Source§type SerializeSettings = ()
type SerializeSettings = ()
A type with values that customize the serialization algorithm, e.g.
padding information.
Source§fn serialize_with<B>(
&self,
buffer: &mut B,
_settings: Self::SerializeSettings,
) -> usizewhere
B: Buffer,
fn serialize_with<B>(
&self,
buffer: &mut B,
_settings: Self::SerializeSettings,
) -> usizewhere
B: Buffer,
Writes
self
to buffer
using custom serialization settings
.Source§fn deserialize(data: &'a [u8]) -> Result<Self, <Self as FieldType<'a>>::Error>
fn deserialize(data: &'a [u8]) -> Result<Self, <Self as FieldType<'a>>::Error>
Parses and deserializes from
data
.Source§fn serialize<B>(&self, buffer: &mut B) -> usizewhere
B: Buffer,
fn serialize<B>(&self, buffer: &mut B) -> usizewhere
B: Buffer,
Writes
self
to buffer
using default settings.Source§fn deserialize_lossy(data: &'a [u8]) -> Result<Self, Self::Error>
fn deserialize_lossy(data: &'a [u8]) -> Result<Self, Self::Error>
Like
FieldType::deserialize
, but it’s allowed to skip some amount of
input checking. Invalid inputs might not trigger errors and instead be
deserialized as random values. Read moreSource§impl Hash for EncryptMethod
impl Hash for EncryptMethod
Source§impl PartialEq for EncryptMethod
impl PartialEq for EncryptMethod
impl Copy for EncryptMethod
impl Eq for EncryptMethod
impl StructuralPartialEq for EncryptMethod
Auto Trait Implementations§
impl Freeze for EncryptMethod
impl RefUnwindSafe for EncryptMethod
impl Send for EncryptMethod
impl Sync for EncryptMethod
impl Unpin for EncryptMethod
impl UnwindSafe for EncryptMethod
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