pub struct UpdateTlsConfigParams {
pub tls_configuration_id: String,
pub tls_configuration: Option<TlsConfiguration>,
}
Expand description
struct for passing parameters to the method update_tls_config
Fields§
§tls_configuration_id: String
Alphanumeric string identifying a TLS configuration.
tls_configuration: Option<TlsConfiguration>
Trait Implementations§
Source§impl Clone for UpdateTlsConfigParams
impl Clone for UpdateTlsConfigParams
Source§fn clone(&self) -> UpdateTlsConfigParams
fn clone(&self) -> UpdateTlsConfigParams
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 UpdateTlsConfigParams
impl Debug for UpdateTlsConfigParams
Source§impl Default for UpdateTlsConfigParams
impl Default for UpdateTlsConfigParams
Source§fn default() -> UpdateTlsConfigParams
fn default() -> UpdateTlsConfigParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UpdateTlsConfigParams
impl RefUnwindSafe for UpdateTlsConfigParams
impl Send for UpdateTlsConfigParams
impl Sync for UpdateTlsConfigParams
impl Unpin for UpdateTlsConfigParams
impl UnwindSafe for UpdateTlsConfigParams
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