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