Struct gapi_grpc::google::spanner::admin::database::v1::BackupInfo[][src]

pub struct BackupInfo {
    pub backup: String,
    pub version_time: Option<Timestamp>,
    pub create_time: Option<Timestamp>,
    pub source_database: String,
}

Information about a backup.

Fields

backup: String

Name of the backup.

version_time: Option<Timestamp>

The backup contains an externally consistent copy of source_database at the timestamp specified by version_time. If the [CreateBackup][google.spanner.admin.database.v1.DatabaseAdmin.CreateBackup] request did not specify version_time, the version_time of the backup is equivalent to the create_time.

create_time: Option<Timestamp>

The time the [CreateBackup][google.spanner.admin.database.v1.DatabaseAdmin.CreateBackup] request was received.

source_database: String

Name of the database the backup was created from.

Trait Implementations

impl Clone for BackupInfo[src]

impl Debug for BackupInfo[src]

impl Default for BackupInfo[src]

impl Message for BackupInfo[src]

impl PartialEq<BackupInfo> for BackupInfo[src]

impl StructuralPartialEq for BackupInfo[src]

Auto Trait Implementations

impl RefUnwindSafe for BackupInfo

impl Send for BackupInfo

impl Sync for BackupInfo

impl Unpin for BackupInfo

impl UnwindSafe for BackupInfo

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]