pub struct ListenResponse {
pub document_change: Option<DocumentChange>,
pub document_delete: Option<DocumentDelete>,
pub document_remove: Option<DocumentRemove>,
pub filter: Option<ExistenceFilter>,
pub target_change: Option<TargetChange>,
}
Expand description
The response for Firestore.Listen.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- databases documents listen projects (response)
Fields§
§document_change: Option<DocumentChange>
A Document has changed.
document_delete: Option<DocumentDelete>
A Document has been deleted.
document_remove: Option<DocumentRemove>
A Document has been removed from a target (because it is no longer relevant to that target).
filter: Option<ExistenceFilter>
A filter to apply to the set of documents previously returned for the given target. Returned when documents may have been removed from the given target, but the exact documents are unknown.
target_change: Option<TargetChange>
Targets have changed.
Trait Implementations§
Source§impl Clone for ListenResponse
impl Clone for ListenResponse
Source§fn clone(&self) -> ListenResponse
fn clone(&self) -> ListenResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ListenResponse
impl Debug for ListenResponse
Source§impl Default for ListenResponse
impl Default for ListenResponse
Source§fn default() -> ListenResponse
fn default() -> ListenResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListenResponse
impl<'de> Deserialize<'de> for ListenResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ListenResponse
impl Serialize for ListenResponse
impl ResponseResult for ListenResponse
Auto Trait Implementations§
impl Freeze for ListenResponse
impl RefUnwindSafe for ListenResponse
impl Send for ListenResponse
impl Sync for ListenResponse
impl Unpin for ListenResponse
impl UnwindSafe for ListenResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more