[][src]Struct rusoto_glue::QuerySchemaVersionMetadataResponse

pub struct QuerySchemaVersionMetadataResponse {
    pub metadata_info_map: Option<HashMap<String, MetadataInfo>>,
    pub next_token: Option<String>,
    pub schema_version_id: Option<String>,
}

Fields

metadata_info_map: Option<HashMap<String, MetadataInfo>>

A map of a metadata key and associated values.

next_token: Option<String>

A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.

schema_version_id: Option<String>

The unique version ID of the schema version.

Trait Implementations

impl Clone for QuerySchemaVersionMetadataResponse[src]

impl Debug for QuerySchemaVersionMetadataResponse[src]

impl Default for QuerySchemaVersionMetadataResponse[src]

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

impl PartialEq<QuerySchemaVersionMetadataResponse> for QuerySchemaVersionMetadataResponse[src]

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