#[repr(u32)]pub enum AeaContextField {
Show 18 variants
Profile = 0,
PaddingSize = 1,
ChecksumMode = 2,
CompressionAlgorithm = 3,
CompressionBlockSize = 4,
AuthData = 5,
MainKey = 6,
SigningPublicKey = 7,
SigningPrivateKey = 8,
SymmetricKey = 9,
RecipientPublicKey = 10,
RecipientPrivateKey = 11,
SignatureEncryptionKey = 12,
RawSize = 13,
ContainerSize = 14,
BlocksPerCluster = 17,
ArchiveIdentifier = 18,
Password = 19,
}Variants§
Profile = 0
PaddingSize = 1
ChecksumMode = 2
CompressionAlgorithm = 3
CompressionBlockSize = 4
AuthData = 5
MainKey = 6
SigningPublicKey = 7
SigningPrivateKey = 8
SymmetricKey = 9
RecipientPublicKey = 10
RecipientPrivateKey = 11
SignatureEncryptionKey = 12
RawSize = 13
ContainerSize = 14
BlocksPerCluster = 17
ArchiveIdentifier = 18
Password = 19
Implementations§
Trait Implementations§
Source§impl Clone for AeaContextField
impl Clone for AeaContextField
Source§fn clone(&self) -> AeaContextField
fn clone(&self) -> AeaContextField
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 moreSource§impl Debug for AeaContextField
impl Debug for AeaContextField
Source§impl Hash for AeaContextField
impl Hash for AeaContextField
Source§impl PartialEq for AeaContextField
impl PartialEq for AeaContextField
Source§fn eq(&self, other: &AeaContextField) -> bool
fn eq(&self, other: &AeaContextField) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AeaContextField
impl Eq for AeaContextField
impl StructuralPartialEq for AeaContextField
Auto Trait Implementations§
impl Freeze for AeaContextField
impl RefUnwindSafe for AeaContextField
impl Send for AeaContextField
impl Sync for AeaContextField
impl Unpin for AeaContextField
impl UnsafeUnpin for AeaContextField
impl UnwindSafe for AeaContextField
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