pub struct ListBuildsForProjectOutput {
pub ids: Option<Vec<String>>,
pub next_token: Option<String>,
}
Fields§
§ids: Option<Vec<String>>
A list of build IDs for the specified build project, with each build ID representing a single build.
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.
Trait Implementations§
Source§impl Clone for ListBuildsForProjectOutput
impl Clone for ListBuildsForProjectOutput
Source§fn clone(&self) -> ListBuildsForProjectOutput
fn clone(&self) -> ListBuildsForProjectOutput
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 ListBuildsForProjectOutput
impl Debug for ListBuildsForProjectOutput
Source§impl Default for ListBuildsForProjectOutput
impl Default for ListBuildsForProjectOutput
Source§fn default() -> ListBuildsForProjectOutput
fn default() -> ListBuildsForProjectOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListBuildsForProjectOutput
impl<'de> Deserialize<'de> for ListBuildsForProjectOutput
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
impl StructuralPartialEq for ListBuildsForProjectOutput
Auto Trait Implementations§
impl Freeze for ListBuildsForProjectOutput
impl RefUnwindSafe for ListBuildsForProjectOutput
impl Send for ListBuildsForProjectOutput
impl Sync for ListBuildsForProjectOutput
impl Unpin for ListBuildsForProjectOutput
impl UnwindSafe for ListBuildsForProjectOutput
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