pub enum CheckingDisabled {
Enabled = 0,
Disabled = 1,
}Expand description
DNSSEC flag to indicate if the client has enabled checking of the data.
Variants§
Trait Implementations§
Source§impl Clone for CheckingDisabled
impl Clone for CheckingDisabled
Source§fn clone(&self) -> CheckingDisabled
fn clone(&self) -> CheckingDisabled
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 CheckingDisabled
impl Debug for CheckingDisabled
Source§impl From<CheckingDisabled> for u16
impl From<CheckingDisabled> for u16
Source§fn from(flag: CheckingDisabled) -> Self
fn from(flag: CheckingDisabled) -> Self
Converts to this type from the input type.
Source§impl From<u16> for CheckingDisabled
impl From<u16> for CheckingDisabled
Source§impl PartialEq for CheckingDisabled
impl PartialEq for CheckingDisabled
impl Copy for CheckingDisabled
impl Eq for CheckingDisabled
impl StructuralPartialEq for CheckingDisabled
Auto Trait Implementations§
impl Freeze for CheckingDisabled
impl RefUnwindSafe for CheckingDisabled
impl Send for CheckingDisabled
impl Sync for CheckingDisabled
impl Unpin for CheckingDisabled
impl UnwindSafe for CheckingDisabled
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