pub struct DocumentRemove {
pub document: String,
pub removed_target_ids: Vec<i32>,
pub read_time: Option<String>,
}Expand description
A Document has been removed from the view of the targets.
Fields§
§document: StringThe resource name of the Document that has gone out of view.
removed_target_ids: Vec<i32>A set of target IDs for targets that previously matched this document.
read_time: Option<String>The read timestamp at which the remove was observed.
Trait Implementations§
Source§impl Clone for DocumentRemove
impl Clone for DocumentRemove
Source§fn clone(&self) -> DocumentRemove
fn clone(&self) -> DocumentRemove
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 DocumentRemove
impl Debug for DocumentRemove
Source§impl<'de> Deserialize<'de> for DocumentRemove
impl<'de> Deserialize<'de> for DocumentRemove
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
Auto Trait Implementations§
impl Freeze for DocumentRemove
impl RefUnwindSafe for DocumentRemove
impl Send for DocumentRemove
impl Sync for DocumentRemove
impl Unpin for DocumentRemove
impl UnwindSafe for DocumentRemove
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