pub struct Caa<'a> {
pub flags: u8,
pub tag: Characters<'a>,
pub value: Characters<'a>,
}Expand description
§Certificate authority authorization record (CAA)
This record is used to specify which certificate authorities (CAs) are allowed to issue certificates for a domain.
Fields§
§flags: u8The flags field is used to specify critical CAA flags.
tag: Characters<'a>The tag field is used to specify the property represented by the record.
value: Characters<'a>The value field is used to specify the value of the property.
Trait Implementations§
impl<'a> Copy for Caa<'a>
impl<'a> StructuralPartialEq for Caa<'a>
Auto Trait Implementations§
impl<'a> Freeze for Caa<'a>
impl<'a> RefUnwindSafe for Caa<'a>
impl<'a> Send for Caa<'a>
impl<'a> Sync for Caa<'a>
impl<'a> Unpin for Caa<'a>
impl<'a> UnwindSafe for Caa<'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