pub struct ListAuthorizersRequest {
pub ascending_order: Option<bool>,
pub marker: Option<String>,
pub page_size: Option<i64>,
pub status: Option<String>,
}Fields§
§ascending_order: Option<bool>Return the list of authorizers in ascending alphabetical order.
marker: Option<String>A marker used to get the next set of results.
page_size: Option<i64>The maximum number of results to return at one time.
status: Option<String>The status of the list authorizers request.
Trait Implementations§
Source§impl Clone for ListAuthorizersRequest
impl Clone for ListAuthorizersRequest
Source§fn clone(&self) -> ListAuthorizersRequest
fn clone(&self) -> ListAuthorizersRequest
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 ListAuthorizersRequest
impl Debug for ListAuthorizersRequest
Source§impl Default for ListAuthorizersRequest
impl Default for ListAuthorizersRequest
Source§fn default() -> ListAuthorizersRequest
fn default() -> ListAuthorizersRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListAuthorizersRequest
impl PartialEq for ListAuthorizersRequest
Source§impl Serialize for ListAuthorizersRequest
impl Serialize for ListAuthorizersRequest
impl StructuralPartialEq for ListAuthorizersRequest
Auto Trait Implementations§
impl Freeze for ListAuthorizersRequest
impl RefUnwindSafe for ListAuthorizersRequest
impl Send for ListAuthorizersRequest
impl Sync for ListAuthorizersRequest
impl Unpin for ListAuthorizersRequest
impl UnwindSafe for ListAuthorizersRequest
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