pub struct CaDetail {
pub summary: CaSummary,
pub subject_cn: String,
pub crl_url: Option<String>,
pub ocsp_url: Option<String>,
pub cab_forum_compliant: bool,
}Expand description
CA detail returned by GET /admin/cas/{id}.
Fields§
§summary: CaSummary§subject_cn: StringSubject CN of the CA certificate.
crl_url: Option<String>CRL distribution point URL (if configured).
ocsp_url: Option<String>OCSP responder URL (if configured).
cab_forum_compliant: boolCA/B Forum compliance mode.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CaDetail
impl RefUnwindSafe for CaDetail
impl Send for CaDetail
impl Sync for CaDetail
impl Unpin for CaDetail
impl UnsafeUnpin for CaDetail
impl UnwindSafe for CaDetail
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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