[][src]Struct rusoto_codebuild::ListBuildsForProjectOutput

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

impl Clone for ListBuildsForProjectOutput[src]

impl Debug for ListBuildsForProjectOutput[src]

impl Default for ListBuildsForProjectOutput[src]

impl<'de> Deserialize<'de> for ListBuildsForProjectOutput[src]

impl PartialEq<ListBuildsForProjectOutput> for ListBuildsForProjectOutput[src]

impl StructuralPartialEq for ListBuildsForProjectOutput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.