pub struct Tlsa<'a> {
pub usage: u8,
pub selector: u8,
pub matching_type: u8,
pub certificate_association_data: Characters<'a>,
}Expand description
Transport Layer Security Authentication (TLSA) Record
This record is used to associate a TLS server certificate or public key with the domain name where the record is found, thus forming a “TLSA certificate association”. This record type is described in RFC 6698.
Fields§
§usage: u8The usage of this TLSA record
selector: u8The selector of this TLSA record
matching_type: u8The matching type of this TLSA record
certificate_association_data: Characters<'a>The certificate association data
Trait Implementations§
source§impl<'a> PartialEq<Tlsa<'a>> for Tlsa<'a>
impl<'a> PartialEq<Tlsa<'a>> for Tlsa<'a>
impl<'a> Copy for Tlsa<'a>
impl<'a> StructuralPartialEq for Tlsa<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Tlsa<'a>
impl<'a> Send for Tlsa<'a>
impl<'a> Sync for Tlsa<'a>
impl<'a> Unpin for Tlsa<'a>
impl<'a> UnwindSafe for Tlsa<'a>
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