pub enum AuthenticData {
NotAuthentic = 0,
Authentic = 1,
}Expand description
DNSSEC flag to indicate if the data has been cryptographically authenticated
Variants§
NotAuthentic = 0
The data is not cryptographically authenticated
Authentic = 1
The data is cryptographically authenticated
Trait Implementations§
Source§impl Clone for AuthenticData
impl Clone for AuthenticData
Source§fn clone(&self) -> AuthenticData
fn clone(&self) -> AuthenticData
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 AuthenticData
impl Debug for AuthenticData
Source§impl From<AuthenticData> for u16
impl From<AuthenticData> for u16
Source§fn from(flag: AuthenticData) -> Self
fn from(flag: AuthenticData) -> Self
Converts to this type from the input type.
Source§impl From<u16> for AuthenticData
impl From<u16> for AuthenticData
Source§impl PartialEq for AuthenticData
impl PartialEq for AuthenticData
impl Copy for AuthenticData
impl Eq for AuthenticData
impl StructuralPartialEq for AuthenticData
Auto Trait Implementations§
impl Freeze for AuthenticData
impl RefUnwindSafe for AuthenticData
impl Send for AuthenticData
impl Sync for AuthenticData
impl Unpin for AuthenticData
impl UnwindSafe for AuthenticData
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