pub struct ListProjectsOutput {
pub next_token: Option<String>,
pub projects: Option<Vec<String>>,
}
Fields§
§next_token: Option<String>
If there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a nextToken. To get the next batch of items in the list, call this operation again, adding the next token to the call.
projects: Option<Vec<String>>
The list of build project names, with each build project name representing a single build project.
Trait Implementations§
Source§impl Clone for ListProjectsOutput
impl Clone for ListProjectsOutput
Source§fn clone(&self) -> ListProjectsOutput
fn clone(&self) -> ListProjectsOutput
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 ListProjectsOutput
impl Debug for ListProjectsOutput
Source§impl Default for ListProjectsOutput
impl Default for ListProjectsOutput
Source§fn default() -> ListProjectsOutput
fn default() -> ListProjectsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListProjectsOutput
impl<'de> Deserialize<'de> for ListProjectsOutput
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 ListProjectsOutput
impl PartialEq for ListProjectsOutput
impl StructuralPartialEq for ListProjectsOutput
Auto Trait Implementations§
impl Freeze for ListProjectsOutput
impl RefUnwindSafe for ListProjectsOutput
impl Send for ListProjectsOutput
impl Sync for ListProjectsOutput
impl Unpin for ListProjectsOutput
impl UnwindSafe for ListProjectsOutput
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