Struct fastly_api::apis::tls_private_keys_api::ListTlsKeysParams
source · pub struct ListTlsKeysParams {
pub filter_in_use: Option<String>,
pub page_number: Option<i32>,
pub page_size: Option<i32>,
}
Expand description
struct for passing parameters to the method list_tls_keys
Fields§
§filter_in_use: Option<String>
Limit the returned keys to those without any matching TLS certificates. The only valid value is false.
page_number: Option<i32>
Current page.
page_size: Option<i32>
Number of records per page.
Trait Implementations§
source§impl Clone for ListTlsKeysParams
impl Clone for ListTlsKeysParams
source§fn clone(&self) -> ListTlsKeysParams
fn clone(&self) -> ListTlsKeysParams
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 ListTlsKeysParams
impl Debug for ListTlsKeysParams
source§impl Default for ListTlsKeysParams
impl Default for ListTlsKeysParams
source§fn default() -> ListTlsKeysParams
fn default() -> ListTlsKeysParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ListTlsKeysParams
impl Send for ListTlsKeysParams
impl Sync for ListTlsKeysParams
impl Unpin for ListTlsKeysParams
impl UnwindSafe for ListTlsKeysParams
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