pub enum CertificateObject {
Certificate,
OrganizationCertificate,
OrganizationProjectCertificate,
}
Expand description
The object type.
- If creating, updating, or getting a specific certificate, the object type is
certificate
. - If listing, activating, or deactivating certificates for the organization, the object type is
organization.certificate
. - If listing, activating, or deactivating certificates for a project, the object type is
organization.project.certificate
.
Variants§
Certificate
certificate
OrganizationCertificate
organization.certificate
OrganizationProjectCertificate
organization.project.certificate
Trait Implementations§
Source§impl Clone for CertificateObject
impl Clone for CertificateObject
Source§fn clone(&self) -> CertificateObject
fn clone(&self) -> CertificateObject
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 CertificateObject
impl Debug for CertificateObject
Source§impl<'de> Deserialize<'de> for CertificateObject
impl<'de> Deserialize<'de> for CertificateObject
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 CertificateObject
impl PartialEq for CertificateObject
Source§impl Serialize for CertificateObject
impl Serialize for CertificateObject
impl Copy for CertificateObject
impl StructuralPartialEq for CertificateObject
Auto Trait Implementations§
impl Freeze for CertificateObject
impl RefUnwindSafe for CertificateObject
impl Send for CertificateObject
impl Sync for CertificateObject
impl Unpin for CertificateObject
impl UnwindSafe for CertificateObject
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