pub enum EncryptMethod {
Des = 2,
Pem = 6,
Pgpdesmd5 = 5,
Pkcsdes = 3,
None = 0,
Pkcs = 1,
Pgpdes = 4,
}
Variants§
Implementations§
Source§impl EncryptMethod
impl EncryptMethod
pub const fn from_const_bytes(s: &[u8]) -> Result<Self, FixParseError>
Trait Implementations§
Source§impl Clone for EncryptMethod
impl Clone for EncryptMethod
Source§fn clone(&self) -> EncryptMethod
fn clone(&self) -> EncryptMethod
Returns a copy 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 FromStr for EncryptMethod
impl FromStr for EncryptMethod
Source§impl Hash for EncryptMethod
impl Hash for EncryptMethod
Source§impl IntoFixValue for EncryptMethod
impl IntoFixValue 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