pub struct CertificateRequestParameters {
pub subject: Vec<SubjectComponent>,
pub subject_alt_names: Vec<SubjectAltName>,
pub is_ca: bool,
}Expand description
Parameters used to generate certificate requests.
Fields§
§subject: Vec<SubjectComponent>§subject_alt_names: Vec<SubjectAltName>§is_ca: boolTrait Implementations§
Source§impl Clone for CertificateRequestParameters
impl Clone for CertificateRequestParameters
Source§fn clone(&self) -> CertificateRequestParameters
fn clone(&self) -> CertificateRequestParameters
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CertificateRequestParameters
impl Debug for CertificateRequestParameters
Source§impl Default for CertificateRequestParameters
impl Default for CertificateRequestParameters
Source§fn default() -> CertificateRequestParameters
fn default() -> CertificateRequestParameters
Returns the “default value” for a type. Read more
Source§impl PartialEq for CertificateRequestParameters
impl PartialEq for CertificateRequestParameters
Source§fn eq(&self, other: &CertificateRequestParameters) -> bool
fn eq(&self, other: &CertificateRequestParameters) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CertificateRequestParameters
impl StructuralPartialEq for CertificateRequestParameters
Auto Trait Implementations§
impl Freeze for CertificateRequestParameters
impl RefUnwindSafe for CertificateRequestParameters
impl Send for CertificateRequestParameters
impl Sync for CertificateRequestParameters
impl Unpin for CertificateRequestParameters
impl UnwindSafe for CertificateRequestParameters
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more