Struct CreateCertificateFromCsrResp
pub(super) struct CreateCertificateFromCsrResp {
pub(super) ownership_token: String,
pub(super) id: String,
pub(super) certificate: String,
}Expand description
A response containing the details of a newly created certificate.
This struct represents the response payload for the operation to create a certificate from a provided CSR. The fields in this struct contain the ownership token, certificate ID, and the PEM-encoded certificate that was generated.
Fields§
§ownership_token: String§id: String§certificate: StringTrait Implementations§
§impl Clone for CreateCertificateFromCsrResp
impl Clone for CreateCertificateFromCsrResp
§fn clone(&self) -> CreateCertificateFromCsrResp
fn clone(&self) -> CreateCertificateFromCsrResp
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 more§impl Debug for CreateCertificateFromCsrResp
impl Debug for CreateCertificateFromCsrResp
§impl<'de> Deserialize<'de> for CreateCertificateFromCsrResp
impl<'de> Deserialize<'de> for CreateCertificateFromCsrResp
§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl From<CreateCertificateFromCsrResp> for DeviceCertificateInfo
impl From<CreateCertificateFromCsrResp> for DeviceCertificateInfo
§fn from(value: CreateCertificateFromCsrResp) -> Self
fn from(value: CreateCertificateFromCsrResp) -> Self
Converts to this type from the input type.
§impl Serialize for CreateCertificateFromCsrResp
impl Serialize for CreateCertificateFromCsrResp
Auto Trait Implementations§
impl Freeze for CreateCertificateFromCsrResp
impl RefUnwindSafe for CreateCertificateFromCsrResp
impl Send for CreateCertificateFromCsrResp
impl Sync for CreateCertificateFromCsrResp
impl Unpin for CreateCertificateFromCsrResp
impl UnwindSafe for CreateCertificateFromCsrResp
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