Struct gapi_grpc::google::bigtable::admin::v2::RestoreTableRequest[][src]

pub struct RestoreTableRequest {
    pub parent: String,
    pub table_id: String,
    pub source: Option<Source>,
}

The request for [RestoreTable][google.bigtable.admin.v2.BigtableTableAdmin.RestoreTable].

Fields

parent: String

Required. The name of the instance in which to create the restored table. This instance must be in the same project as the source backup. Values are of the form projects/<project>/instances/<instance>.

table_id: String

Required. The id of the table to create and restore to. This table must not already exist. The table_id appended to parent forms the full table name of the form projects/<project>/instances/<instance>/tables/<table_id>.

source: Option<Source>

Required. The source from which to restore.

Trait Implementations

impl Clone for RestoreTableRequest[src]

impl Debug for RestoreTableRequest[src]

impl Default for RestoreTableRequest[src]

impl Message for RestoreTableRequest[src]

impl PartialEq<RestoreTableRequest> for RestoreTableRequest[src]

impl StructuralPartialEq for RestoreTableRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for RestoreTableRequest

impl Send for RestoreTableRequest

impl Sync for RestoreTableRequest

impl Unpin for RestoreTableRequest

impl UnwindSafe for RestoreTableRequest

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]