pub struct ListServiceAuthorizationParams {
pub page_number: Option<i32>,
pub page_size: Option<i32>,
}
Expand description
struct for passing parameters to the method list_service_authorization
Fields§
§page_number: Option<i32>
Current page.
page_size: Option<i32>
Number of records per page.
Trait Implementations§
Source§impl Clone for ListServiceAuthorizationParams
impl Clone for ListServiceAuthorizationParams
Source§fn clone(&self) -> ListServiceAuthorizationParams
fn clone(&self) -> ListServiceAuthorizationParams
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 ListServiceAuthorizationParams
impl Default for ListServiceAuthorizationParams
Source§fn default() -> ListServiceAuthorizationParams
fn default() -> ListServiceAuthorizationParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListServiceAuthorizationParams
impl RefUnwindSafe for ListServiceAuthorizationParams
impl Send for ListServiceAuthorizationParams
impl Sync for ListServiceAuthorizationParams
impl Unpin for ListServiceAuthorizationParams
impl UnwindSafe for ListServiceAuthorizationParams
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