pub struct ListTlsBulkCertsParams {
pub filter_tls_domain_id: Option<String>,
pub page_number: Option<i32>,
pub page_size: Option<i32>,
pub sort: Option<String>,
}
Expand description
struct for passing parameters to the method list_tls_bulk_certs
Fields§
§filter_tls_domain_id: Option<String>
Filter certificates by their matching, fully-qualified domain name.
page_number: Option<i32>
Current page.
page_size: Option<i32>
Number of records per page.
sort: Option<String>
The order in which to list the results by creation date.
Trait Implementations§
source§impl Clone for ListTlsBulkCertsParams
impl Clone for ListTlsBulkCertsParams
source§fn clone(&self) -> ListTlsBulkCertsParams
fn clone(&self) -> ListTlsBulkCertsParams
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 ListTlsBulkCertsParams
impl Debug for ListTlsBulkCertsParams
source§impl Default for ListTlsBulkCertsParams
impl Default for ListTlsBulkCertsParams
source§fn default() -> ListTlsBulkCertsParams
fn default() -> ListTlsBulkCertsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ListTlsBulkCertsParams
impl Send for ListTlsBulkCertsParams
impl Sync for ListTlsBulkCertsParams
impl Unpin for ListTlsBulkCertsParams
impl UnwindSafe for ListTlsBulkCertsParams
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