pub enum CipherAlg {
None = 0,
AesGcm = 1,
Chacha20Poly1305 = 2,
}Available on crate feature
ovpn only.Expand description
Enum - defines an integer enumeration, with values for each entry incrementing by 1, (e.g. 0, 1, 2, 3)
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CipherAlg
impl RefUnwindSafe for CipherAlg
impl Send for CipherAlg
impl Sync for CipherAlg
impl Unpin for CipherAlg
impl UnsafeUnpin for CipherAlg
impl UnwindSafe for CipherAlg
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