[][src]Struct google_sql1_beta4::CloneContext

pub struct CloneContext {
    pub bin_log_coordinates: Option<BinLogCoordinates>,
    pub kind: Option<String>,
    pub point_in_time: Option<String>,
    pub pitr_timestamp_ms: Option<String>,
    pub destination_instance_name: Option<String>,
}

Database instance clone context.

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

Fields

bin_log_coordinates: Option<BinLogCoordinates>

Binary log coordinates, if specified, identify the position up to which the source instance should be cloned. If not specified, the source instance is cloned up to the most recent binary log coordinates.

kind: Option<String>

This is always sql#cloneContext.

point_in_time: Option<String>

Reserved for future use.

pitr_timestamp_ms: Option<String>

Reserved for future use.

destination_instance_name: Option<String>

Name of the Cloud SQL instance to be created as a clone.

Trait Implementations

impl Clone for CloneContext[src]

impl Debug for CloneContext[src]

impl Default for CloneContext[src]

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

impl Part for CloneContext[src]

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

impl<T> Typeable for T where
    T: Any