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