pub struct PatchTlsSubParams {
pub tls_subscription_id: String,
pub force: Option<bool>,
pub tls_subscription: Option<TlsSubscription>,
}
Expand description
struct for passing parameters to the method patch_tls_sub
Fields§
§tls_subscription_id: String
Alphanumeric string identifying a TLS subscription.
force: Option<bool>
A flag that allows you to edit and delete a subscription with active domains. Valid to use on PATCH and DELETE actions. As a warning, removing an active domain from a subscription or forcing the deletion of a subscription may result in breaking TLS termination to that domain.
tls_subscription: Option<TlsSubscription>
Trait Implementations§
Source§impl Clone for PatchTlsSubParams
impl Clone for PatchTlsSubParams
Source§fn clone(&self) -> PatchTlsSubParams
fn clone(&self) -> PatchTlsSubParams
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 PatchTlsSubParams
impl Debug for PatchTlsSubParams
Source§impl Default for PatchTlsSubParams
impl Default for PatchTlsSubParams
Source§fn default() -> PatchTlsSubParams
fn default() -> PatchTlsSubParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PatchTlsSubParams
impl RefUnwindSafe for PatchTlsSubParams
impl Send for PatchTlsSubParams
impl Sync for PatchTlsSubParams
impl Unpin for PatchTlsSubParams
impl UnwindSafe for PatchTlsSubParams
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