pub struct ListProjectsResult {
pub next_token: Option<String>,
pub projects: Vec<ProjectSummary>,
}
Fields§
§next_token: Option<String>
The continuation token to use when requesting the next set of results, if there are more results to be returned.
projects: Vec<ProjectSummary>
A list of projects.
Trait Implementations§
Source§impl Clone for ListProjectsResult
impl Clone for ListProjectsResult
Source§fn clone(&self) -> ListProjectsResult
fn clone(&self) -> ListProjectsResult
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 ListProjectsResult
impl Debug for ListProjectsResult
Source§impl Default for ListProjectsResult
impl Default for ListProjectsResult
Source§fn default() -> ListProjectsResult
fn default() -> ListProjectsResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListProjectsResult
impl<'de> Deserialize<'de> for ListProjectsResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ListProjectsResult
impl PartialEq for ListProjectsResult
impl StructuralPartialEq for ListProjectsResult
Auto Trait Implementations§
impl Freeze for ListProjectsResult
impl RefUnwindSafe for ListProjectsResult
impl Send for ListProjectsResult
impl Sync for ListProjectsResult
impl Unpin for ListProjectsResult
impl UnwindSafe for ListProjectsResult
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