pub struct ListMutualAuthenticationsParams {
pub include: Option<String>,
pub page_number: Option<i32>,
pub page_size: Option<i32>,
}
Expand description
struct for passing parameters to the method list_mutual_authentications
Fields§
§include: Option<String>
Comma-separated list of related objects to include (optional). Permitted values: tls_activations
. Including TLS activations will provide you with the TLS domain names that are related to your Mutual TLS authentication.
page_number: Option<i32>
Current page.
page_size: Option<i32>
Number of records per page.
Trait Implementations§
Source§impl Clone for ListMutualAuthenticationsParams
impl Clone for ListMutualAuthenticationsParams
Source§fn clone(&self) -> ListMutualAuthenticationsParams
fn clone(&self) -> ListMutualAuthenticationsParams
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 Default for ListMutualAuthenticationsParams
impl Default for ListMutualAuthenticationsParams
Source§fn default() -> ListMutualAuthenticationsParams
fn default() -> ListMutualAuthenticationsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListMutualAuthenticationsParams
impl RefUnwindSafe for ListMutualAuthenticationsParams
impl Send for ListMutualAuthenticationsParams
impl Sync for ListMutualAuthenticationsParams
impl Unpin for ListMutualAuthenticationsParams
impl UnwindSafe for ListMutualAuthenticationsParams
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