pub struct CertificateDeleted {
pub id: Option<String>,
pub name: Option<String>,
pub certificate: Option<String>,
}
Expand description
The details for events with this type
.
Fields§
§id: Option<String>
The certificate ID.
name: Option<String>
The name of the certificate.
certificate: Option<String>
The certificate content in PEM format.
Implementations§
Source§impl CertificateDeleted
impl CertificateDeleted
Sourcepub fn builder() -> CertificateDeletedBuilder<((), (), ())>
pub fn builder() -> CertificateDeletedBuilder<((), (), ())>
Create a builder for building CertificateDeleted
.
On the builder, call .id(...)
(optional), .name(...)
(optional), .certificate(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of CertificateDeleted
.
Trait Implementations§
Source§impl Clone for CertificateDeleted
impl Clone for CertificateDeleted
Source§fn clone(&self) -> CertificateDeleted
fn clone(&self) -> CertificateDeleted
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 CertificateDeleted
impl Debug for CertificateDeleted
Source§impl Default for CertificateDeleted
impl Default for CertificateDeleted
Source§fn default() -> CertificateDeleted
fn default() -> CertificateDeleted
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CertificateDeleted
impl<'de> Deserialize<'de> for CertificateDeleted
Source§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
Source§impl PartialEq for CertificateDeleted
impl PartialEq for CertificateDeleted
Source§impl Serialize for CertificateDeleted
impl Serialize for CertificateDeleted
impl StructuralPartialEq for CertificateDeleted
Auto Trait Implementations§
impl Freeze for CertificateDeleted
impl RefUnwindSafe for CertificateDeleted
impl Send for CertificateDeleted
impl Sync for CertificateDeleted
impl Unpin for CertificateDeleted
impl UnwindSafe for CertificateDeleted
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