pub struct ListOutgoingCertificatesRequest {
pub ascending_order: Option<bool>,
pub marker: Option<String>,
pub page_size: Option<i64>,
}Expand description
The input to the ListOutgoingCertificates operation.
Fields§
§ascending_order: Option<bool>Specifies the order for results. If True, the results are returned in ascending order, based on the creation date.
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 ListOutgoingCertificatesRequest
impl Clone for ListOutgoingCertificatesRequest
Source§fn clone(&self) -> ListOutgoingCertificatesRequest
fn clone(&self) -> ListOutgoingCertificatesRequest
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 Default for ListOutgoingCertificatesRequest
impl Default for ListOutgoingCertificatesRequest
Source§fn default() -> ListOutgoingCertificatesRequest
fn default() -> ListOutgoingCertificatesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListOutgoingCertificatesRequest
impl PartialEq for ListOutgoingCertificatesRequest
Source§fn eq(&self, other: &ListOutgoingCertificatesRequest) -> bool
fn eq(&self, other: &ListOutgoingCertificatesRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListOutgoingCertificatesRequest
Auto Trait Implementations§
impl Freeze for ListOutgoingCertificatesRequest
impl RefUnwindSafe for ListOutgoingCertificatesRequest
impl Send for ListOutgoingCertificatesRequest
impl Sync for ListOutgoingCertificatesRequest
impl Unpin for ListOutgoingCertificatesRequest
impl UnwindSafe for ListOutgoingCertificatesRequest
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