pub struct ApiPassthrough {
pub extensions: Option<Extensions>,
pub subject: Option<ASN1Subject>,
}
Expand description
Contains X.509 certificate information to be placed in an issued certificate. An APIPassthrough
or APICSRPassthrough
template variant must be selected, or else this parameter is ignored.
If conflicting or duplicate certificate information is supplied from other sources, ACM Private CA applies order of operation rules to determine what information is used.
Fields§
§extensions: Option<Extensions>
Specifies X.509 extension information for a certificate.
subject: Option<ASN1Subject>
Trait Implementations§
Source§impl Clone for ApiPassthrough
impl Clone for ApiPassthrough
Source§fn clone(&self) -> ApiPassthrough
fn clone(&self) -> ApiPassthrough
Returns a duplicate 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 ApiPassthrough
impl Debug for ApiPassthrough
Source§impl Default for ApiPassthrough
impl Default for ApiPassthrough
Source§fn default() -> ApiPassthrough
fn default() -> ApiPassthrough
Returns the “default value” for a type. Read more
Source§impl PartialEq for ApiPassthrough
impl PartialEq for ApiPassthrough
Source§impl Serialize for ApiPassthrough
impl Serialize for ApiPassthrough
impl StructuralPartialEq for ApiPassthrough
Auto Trait Implementations§
impl Freeze for ApiPassthrough
impl RefUnwindSafe for ApiPassthrough
impl Send for ApiPassthrough
impl Sync for ApiPassthrough
impl Unpin for ApiPassthrough
impl UnwindSafe for ApiPassthrough
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