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 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 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 Freeze for ListTlsConfigsParams
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