[][src]Struct rusoto_codebuild::ListReportGroupsOutput

pub struct ListReportGroupsOutput {
    pub next_token: Option<String>,
    pub report_groups: 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.

report_groups: Option<Vec<String>>

The list of ARNs for the report groups in the current AWS account.

Trait Implementations

impl Clone for ListReportGroupsOutput[src]

impl Debug for ListReportGroupsOutput[src]

impl Default for ListReportGroupsOutput[src]

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

impl PartialEq<ListReportGroupsOutput> for ListReportGroupsOutput[src]

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