[][src]Struct rusoto_workmail::ListResourcesResponse

pub struct ListResourcesResponse {
    pub next_token: Option<String>,
    pub resources: Option<Vec<Resource>>,
}

Fields

next_token: Option<String>

The token used to paginate through all the organization's resources. While results are still available, it has an associated value. When the last page is reached, the token is empty.

resources: Option<Vec<Resource>>

One page of the organization's resource representation.

Trait Implementations

impl Clone for ListResourcesResponse[src]

impl Default for ListResourcesResponse[src]

impl PartialEq<ListResourcesResponse> for ListResourcesResponse[src]

impl Debug for ListResourcesResponse[src]

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

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[src]

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.

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

impl<T> BorrowMut<T> 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<T> for T

type Output = T

Should always be Self

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,