#[repr(u8)]pub enum AesTunnel1Decrypt {
ENCRYPT = 0,
DECRYPT = 1,
}Variants§
ENCRYPT = 0
Second tunnel stage performs encrypt operations.
DECRYPT = 1
Second tunnel stage performs decrypt operations.
Implementations§
Trait Implementations§
Source§impl Clone for AesTunnel1Decrypt
impl Clone for AesTunnel1Decrypt
Source§fn clone(&self) -> AesTunnel1Decrypt
fn clone(&self) -> AesTunnel1Decrypt
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 AesTunnel1Decrypt
impl Debug for AesTunnel1Decrypt
Source§impl From<AesTunnel1Decrypt> for u8
impl From<AesTunnel1Decrypt> for u8
Source§fn from(val: AesTunnel1Decrypt) -> u8
fn from(val: AesTunnel1Decrypt) -> u8
Converts to this type from the input type.
Source§impl From<u8> for AesTunnel1Decrypt
impl From<u8> for AesTunnel1Decrypt
Source§fn from(val: u8) -> AesTunnel1Decrypt
fn from(val: u8) -> AesTunnel1Decrypt
Converts to this type from the input type.
Source§impl Ord for AesTunnel1Decrypt
impl Ord for AesTunnel1Decrypt
Source§fn cmp(&self, other: &AesTunnel1Decrypt) -> Ordering
fn cmp(&self, other: &AesTunnel1Decrypt) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AesTunnel1Decrypt
impl PartialEq for AesTunnel1Decrypt
Source§impl PartialOrd for AesTunnel1Decrypt
impl PartialOrd for AesTunnel1Decrypt
impl Copy for AesTunnel1Decrypt
impl Eq for AesTunnel1Decrypt
impl StructuralPartialEq for AesTunnel1Decrypt
Auto Trait Implementations§
impl Freeze for AesTunnel1Decrypt
impl RefUnwindSafe for AesTunnel1Decrypt
impl Send for AesTunnel1Decrypt
impl Sync for AesTunnel1Decrypt
impl Unpin for AesTunnel1Decrypt
impl UnwindSafe for AesTunnel1Decrypt
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