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