[][src]Struct rusoto_codebuild::ListSharedReportGroupsOutput

pub struct ListSharedReportGroupsOutput {
    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 shared with the current AWS account or user.

Trait Implementations

impl Clone for ListSharedReportGroupsOutput[src]

impl Debug for ListSharedReportGroupsOutput[src]

impl Default for ListSharedReportGroupsOutput[src]

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

impl PartialEq<ListSharedReportGroupsOutput> for ListSharedReportGroupsOutput[src]

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