Struct rusoto_glue::TableVersionError[][src]

pub struct TableVersionError {
    pub error_detail: Option<ErrorDetail>,
    pub table_name: Option<String>,
    pub version_id: Option<String>,
}

An error record for table-version operations.

Fields

Detail about the error.

The name of the table in question.

The ID value of the version in question.

Trait Implementations

impl Default for TableVersionError
[src]

Returns the "default value" for a type. Read more

impl Debug for TableVersionError
[src]

Formats the value using the given formatter. Read more

impl Clone for TableVersionError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for TableVersionError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations