[][src]Struct rusoto_codebuild::ListSharedProjectsOutput

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

Fields

next_token: Option<String>

During a previous call, the maximum number of items that can be returned is the value specified in maxResults. If there more items in the list, then a unique string called a nextToken is returned. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.

projects: Option<Vec<String>>

The list of ARNs for the build projects shared with the current AWS account or user.

Trait Implementations

impl Clone for ListSharedProjectsOutput[src]

impl Debug for ListSharedProjectsOutput[src]

impl Default for ListSharedProjectsOutput[src]

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

impl PartialEq<ListSharedProjectsOutput> for ListSharedProjectsOutput[src]

impl StructuralPartialEq for ListSharedProjectsOutput[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.