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
sourceimpl Clone for ListTlsBulkCertsParams
impl Clone for ListTlsBulkCertsParams
sourcefn clone(&self) -> ListTlsBulkCertsParams
fn clone(&self) -> ListTlsBulkCertsParams
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ListTlsBulkCertsParams
impl Debug for ListTlsBulkCertsParams
sourceimpl Default for ListTlsBulkCertsParams
impl Default for ListTlsBulkCertsParams
sourcefn 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more