[][src]Struct rusoto_inspector::ListExclusionsResponse

pub struct ListExclusionsResponse {
    pub exclusion_arns: Vec<String>,
    pub next_token: Option<String>,
}

Fields

exclusion_arns: Vec<String>

A list of exclusions' ARNs returned by the action.

next_token: Option<String>

When a response is generated, if there is more data to be listed, this parameters is present in the response and contains the value to use for the nextToken parameter in a subsequent pagination request. If there is no more data to be listed, this parameter is set to null.

Trait Implementations

impl Clone for ListExclusionsResponse[src]

impl Debug for ListExclusionsResponse[src]

impl Default for ListExclusionsResponse[src]

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

impl PartialEq<ListExclusionsResponse> for ListExclusionsResponse[src]

impl StructuralPartialEq for ListExclusionsResponse[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> Instrument for T[src]

impl<T> Instrument 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> 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.