pub struct DS {
pub domain_name: DomainName,
pub ttl: u32,
pub class: Class,
pub key_tag: u16,
pub algorithm_type: AlgorithmType,
pub digest_type: DigestType,
pub digest: Vec<u8>,
}
Fields§
§domain_name: DomainName
§ttl: u32
§class: Class
§key_tag: u16
§algorithm_type: AlgorithmType
§digest_type: DigestType
§digest: Vec<u8>
Trait Implementations§
impl Eq for DS
impl StructuralPartialEq for DS
Auto Trait Implementations§
impl Freeze for DS
impl RefUnwindSafe for DS
impl Send for DS
impl Sync for DS
impl Unpin for DS
impl UnwindSafe for DS
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