[][src]Struct firestore_grpc_cloudrun::DocumentDelete

pub struct DocumentDelete {
    pub document: String,
    pub removed_target_ids: Vec<i32>,
    pub read_time: Option<Timestamp>,
}

A [Document][google.firestore.v1.Document] has been deleted.

May be the result of multiple [writes][google.firestore.v1.Write], including updates, the last of which deleted the [Document][google.firestore.v1.Document].

Multiple [DocumentDelete][google.firestore.v1.DocumentDelete] messages may be returned for the same logical delete, if multiple targets are affected.

Fields

document: String

The resource name of the [Document][google.firestore.v1.Document] that was deleted.

removed_target_ids: Vec<i32>

A set of target IDs for targets that previously matched this entity.

read_time: Option<Timestamp>

The read timestamp at which the delete was observed.

Greater or equal to the commit_time of the delete.

Trait Implementations

impl Clone for DocumentDelete[src]

impl Debug for DocumentDelete[src]

impl Default for DocumentDelete[src]

impl Message for DocumentDelete[src]

impl PartialEq<DocumentDelete> for DocumentDelete[src]

impl StructuralPartialEq for DocumentDelete[src]

Auto Trait Implementations

impl RefUnwindSafe for DocumentDelete

impl Send for DocumentDelete

impl Sync for DocumentDelete

impl Unpin for DocumentDelete

impl UnwindSafe for DocumentDelete

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>, 
[src]

impl<T> WithSubscriber for T[src]