pub struct ListProjectsRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Expand description
Request structure used to request projects list in AWS Mobile Hub.
Fields§
§max_results: Option<i64>
Maximum number of records to list in a single response.
next_token: Option<String>
Pagination token. Set to null to start listing projects from start. If non-null pagination token is returned in a result, then pass its value in here in another request to list more projects.
Trait Implementations§
Source§impl Clone for ListProjectsRequest
impl Clone for ListProjectsRequest
Source§fn clone(&self) -> ListProjectsRequest
fn clone(&self) -> ListProjectsRequest
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 ListProjectsRequest
impl Debug for ListProjectsRequest
Source§impl Default for ListProjectsRequest
impl Default for ListProjectsRequest
Source§fn default() -> ListProjectsRequest
fn default() -> ListProjectsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListProjectsRequest
impl PartialEq for ListProjectsRequest
Source§impl Serialize for ListProjectsRequest
impl Serialize for ListProjectsRequest
impl StructuralPartialEq for ListProjectsRequest
Auto Trait Implementations§
impl Freeze for ListProjectsRequest
impl RefUnwindSafe for ListProjectsRequest
impl Send for ListProjectsRequest
impl Sync for ListProjectsRequest
impl Unpin for ListProjectsRequest
impl UnwindSafe for ListProjectsRequest
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