pub struct DNSKEY {
pub domain_name: DomainName,
pub ttl: u32,
pub class: Class,
pub zone_key_flag: bool,
pub secure_entry_point_flag: bool,
pub algorithm_type: AlgorithmType,
pub public_key: Vec<u8>,
}
Fields§
§domain_name: DomainName
§ttl: u32
§class: Class
§zone_key_flag: bool
§secure_entry_point_flag: bool
§algorithm_type: AlgorithmType
§public_key: Vec<u8>
Implementations§
Trait Implementations§
impl Eq for DNSKEY
impl StructuralPartialEq for DNSKEY
Auto Trait Implementations§
impl Freeze for DNSKEY
impl RefUnwindSafe for DNSKEY
impl Send for DNSKEY
impl Sync for DNSKEY
impl Unpin for DNSKEY
impl UnwindSafe for DNSKEY
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