[][src]Struct gcp_client::google::spanner::admin::database::v1::ListBackupOperationsResponse

pub struct ListBackupOperationsResponse {
    pub operations: Vec<Operation>,
    pub next_page_token: String,
}

The response for [ListBackupOperations][google.spanner.admin.database.v1.DatabaseAdmin.ListBackupOperations].

Fields

operations: Vec<Operation>

The list of matching backup [long-running operations][google.longrunning.Operation]. Each operation's name will be prefixed by the backup's name and the operation's [metadata][google.longrunning.Operation.metadata] will be of type [CreateBackupMetadata][google.spanner.admin.database.v1.CreateBackupMetadata]. Operations returned include those that are pending or have completed/failed/canceled within the last 7 days. Operations returned are ordered by operation.metadata.value.progress.start_time in descending order starting from the most recently started operation.

next_page_token: String

next_page_token can be sent in a subsequent [ListBackupOperations][google.spanner.admin.database.v1.DatabaseAdmin.ListBackupOperations] call to fetch more of the matching metadata.

Trait Implementations

impl Clone for ListBackupOperationsResponse[src]

impl Debug for ListBackupOperationsResponse[src]

impl Default for ListBackupOperationsResponse[src]

impl Message for ListBackupOperationsResponse[src]

impl PartialEq<ListBackupOperationsResponse> for ListBackupOperationsResponse[src]

impl StructuralPartialEq for ListBackupOperationsResponse[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> 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> 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>, 

impl<T> WithSubscriber for T[src]