pub struct ListTlsConfigsParams {
pub filter_bulk: Option<String>,
pub include: Option<String>,
pub page_number: Option<i32>,
pub page_size: Option<i32>,
}
Expand description
struct for passing parameters to the method list_tls_configs
Fields§
§filter_bulk: Option<String>
Optionally filters by the bulk attribute.
include: Option<String>
Include related objects. Optional, comma-separated values. Permitted values: dns_records
.
page_number: Option<i32>
Current page.
page_size: Option<i32>
Number of records per page.
Trait Implementations§
source§impl Clone for ListTlsConfigsParams
impl Clone for ListTlsConfigsParams
source§fn clone(&self) -> ListTlsConfigsParams
fn clone(&self) -> ListTlsConfigsParams
Returns a copy 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 ListTlsConfigsParams
impl Debug for ListTlsConfigsParams
source§impl Default for ListTlsConfigsParams
impl Default for ListTlsConfigsParams
source§fn default() -> ListTlsConfigsParams
fn default() -> ListTlsConfigsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ListTlsConfigsParams
impl Send for ListTlsConfigsParams
impl Sync for ListTlsConfigsParams
impl Unpin for ListTlsConfigsParams
impl UnwindSafe for ListTlsConfigsParams
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