pub struct CreateTlsSubParams {
pub force: Option<bool>,
pub tls_subscription: Option<TlsSubscription>,
}
Expand description
struct for passing parameters to the method create_tls_sub
Fields§
§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 CreateTlsSubParams
impl Clone for CreateTlsSubParams
Source§fn clone(&self) -> CreateTlsSubParams
fn clone(&self) -> CreateTlsSubParams
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 CreateTlsSubParams
impl Debug for CreateTlsSubParams
Source§impl Default for CreateTlsSubParams
impl Default for CreateTlsSubParams
Source§fn default() -> CreateTlsSubParams
fn default() -> CreateTlsSubParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CreateTlsSubParams
impl RefUnwindSafe for CreateTlsSubParams
impl Send for CreateTlsSubParams
impl Sync for CreateTlsSubParams
impl Unpin for CreateTlsSubParams
impl UnwindSafe for CreateTlsSubParams
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