pub struct RenewCertificate {
pub cert_issuer_name: Option<String>,
pub generate_key: Option<bool>,
pub item_id: Option<i64>,
pub json: Option<bool>,
pub name: Option<String>,
pub token: Option<String>,
pub uid_token: Option<String>,
}Fields§
§cert_issuer_name: Option<String>The name of the PKI certificate issuer
generate_key: Option<bool>Generate a new key as part of the certificate renewal
item_id: Option<i64>Certificate item id
json: Option<bool>Set output format to JSON
name: Option<String>Certificate name
token: Option<String>Authentication token (see /auth and /configure)
uid_token: Option<String>The universal identity token, Required only for universal_identity authentication
Implementations§
Source§impl RenewCertificate
impl RenewCertificate
pub fn new() -> RenewCertificate
Trait Implementations§
Source§impl Clone for RenewCertificate
impl Clone for RenewCertificate
Source§fn clone(&self) -> RenewCertificate
fn clone(&self) -> RenewCertificate
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RenewCertificate
impl Debug for RenewCertificate
Source§impl Default for RenewCertificate
impl Default for RenewCertificate
Source§fn default() -> RenewCertificate
fn default() -> RenewCertificate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RenewCertificate
impl<'de> Deserialize<'de> for RenewCertificate
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 RenewCertificate
impl PartialEq for RenewCertificate
Source§fn eq(&self, other: &RenewCertificate) -> bool
fn eq(&self, other: &RenewCertificate) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RenewCertificate
impl Serialize for RenewCertificate
impl StructuralPartialEq for RenewCertificate
Auto Trait Implementations§
impl Freeze for RenewCertificate
impl RefUnwindSafe for RenewCertificate
impl Send for RenewCertificate
impl Sync for RenewCertificate
impl Unpin for RenewCertificate
impl UnsafeUnpin for RenewCertificate
impl UnwindSafe for RenewCertificate
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