pub struct ListProjectsRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§max_results: Option<i64>
The maximum amount of data that can be contained in a single set of results.
next_token: Option<String>
The continuation token to be used to return the next set of results, if the results cannot be returned in one response.
Trait Implementations§
Source§impl Clone for ListProjectsRequest
impl Clone for ListProjectsRequest
Source§fn clone(&self) -> ListProjectsRequest
fn clone(&self) -> ListProjectsRequest
Returns a copy 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