[][src]Struct rusoto_codebuild::ListProjectsOutput

pub struct ListProjectsOutput {
    pub next_token: Option<String>,
    pub projects: Option<Vec<String>>,
}

Fields

If there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a next token. To get the next batch of items in the list, call this operation again, adding the next token to the call.

The list of build project names, with each build project name representing a single build project.

Trait Implementations

impl Clone for ListProjectsOutput
[src]

Performs copy-assignment from source. Read more

impl Default for ListProjectsOutput
[src]

impl PartialEq<ListProjectsOutput> for ListProjectsOutput
[src]

impl Debug for ListProjectsOutput
[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T