pub struct CertificateNames {
pub common_name: Option<String<HOSTNAME_MAXLEN>>,
pub san_dns_names: Vec<String<HOSTNAME_MAXLEN>, MAX_SAN_DNS_NAMES>,
}Available on crate feature
rustpki only.Fields§
§common_name: Option<String<HOSTNAME_MAXLEN>>§san_dns_names: Vec<String<HOSTNAME_MAXLEN>, MAX_SAN_DNS_NAMES>Auto Trait Implementations§
impl Freeze for CertificateNames
impl RefUnwindSafe for CertificateNames
impl Send for CertificateNames
impl Sync for CertificateNames
impl Unpin for CertificateNames
impl UnsafeUnpin for CertificateNames
impl UnwindSafe for CertificateNames
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