Struct rusoto_glue::MappingEntry[][src]

pub struct MappingEntry {
    pub source_path: Option<String>,
    pub source_table: Option<String>,
    pub source_type: Option<String>,
    pub target_path: Option<String>,
    pub target_table: Option<String>,
    pub target_type: Option<String>,
}

Defines a mapping.

Fields

The source path.

The name of the source table.

The source type.

The target path.

The target table.

The target type.

Trait Implementations

impl Default for MappingEntry
[src]

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

impl Debug for MappingEntry
[src]

Formats the value using the given formatter. Read more

impl Clone for MappingEntry
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for MappingEntry
[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