#[non_exhaustive]pub struct ListBuildsForProjectOutput {
pub ids: Option<Vec<String>>,
pub next_token: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.ids: Option<Vec<String>>
A list of build identifiers 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.
Implementations
A list of build identifiers for the specified build project, with each build ID representing a single build.
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.
Creates a new builder-style object to manufacture ListBuildsForProjectOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ListBuildsForProjectOutput
impl Send for ListBuildsForProjectOutput
impl Sync for ListBuildsForProjectOutput
impl Unpin for ListBuildsForProjectOutput
impl UnwindSafe for ListBuildsForProjectOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more