pub struct ListCACertificatesRequest {
pub ascending_order: Option<bool>,
pub marker: Option<String>,
pub page_size: Option<i64>,
}Expand description
Input for the ListCACertificates operation.
Fields§
§ascending_order: Option<bool>Determines the order of the results.
marker: Option<String>The marker for the next set of results.
page_size: Option<i64>The result page size.
Trait Implementations§
Source§impl Clone for ListCACertificatesRequest
impl Clone for ListCACertificatesRequest
Source§fn clone(&self) -> ListCACertificatesRequest
fn clone(&self) -> ListCACertificatesRequest
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 ListCACertificatesRequest
impl Debug for ListCACertificatesRequest
Source§impl Default for ListCACertificatesRequest
impl Default for ListCACertificatesRequest
Source§fn default() -> ListCACertificatesRequest
fn default() -> ListCACertificatesRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ListCACertificatesRequest
Auto Trait Implementations§
impl Freeze for ListCACertificatesRequest
impl RefUnwindSafe for ListCACertificatesRequest
impl Send for ListCACertificatesRequest
impl Sync for ListCACertificatesRequest
impl Unpin for ListCACertificatesRequest
impl UnwindSafe for ListCACertificatesRequest
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