Struct google_metastore1_beta::api::DatabaseDump[][src]

pub struct DatabaseDump {
    pub database_type: Option<String>,
    pub gcs_uri: Option<String>,
    pub source_database: Option<String>,
    pub type_: Option<String>,
}

A specification of the location of and metadata about a database dump from a relational database management system.

This type is not used in any activity, and only used as part of another schema.

Fields

database_type: Option<String>

The type of the database.

gcs_uri: Option<String>

A Cloud Storage object or folder URI that specifies the source from which to import metadata. It must begin with gs://.

source_database: Option<String>

The name of the source database.

type_: Option<String>

Optional. The type of the database dump. If unspecified, defaults to MYSQL.

Trait Implementations

impl Clone for DatabaseDump[src]

impl Debug for DatabaseDump[src]

impl Default for DatabaseDump[src]

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

impl Part for DatabaseDump[src]

impl Serialize for DatabaseDump[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> 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.