pub struct GetTlsActivationParams {
pub tls_activation_id: String,
pub include: Option<String>,
}
Expand description
struct for passing parameters to the method get_tls_activation
Fields§
§tls_activation_id: String
Alphanumeric string identifying a TLS activation.
include: Option<String>
Include related objects. Optional, comma-separated values. Permitted values: tls_certificate
, tls_configuration
, and tls_domain
.
Trait Implementations§
Source§impl Clone for GetTlsActivationParams
impl Clone for GetTlsActivationParams
Source§fn clone(&self) -> GetTlsActivationParams
fn clone(&self) -> GetTlsActivationParams
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 GetTlsActivationParams
impl Debug for GetTlsActivationParams
Source§impl Default for GetTlsActivationParams
impl Default for GetTlsActivationParams
Source§fn default() -> GetTlsActivationParams
fn default() -> GetTlsActivationParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetTlsActivationParams
impl RefUnwindSafe for GetTlsActivationParams
impl Send for GetTlsActivationParams
impl Sync for GetTlsActivationParams
impl Unpin for GetTlsActivationParams
impl UnwindSafe for GetTlsActivationParams
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