pub struct TombstoneProps {
pub deleted_object_id: ThingsId,
pub delete_date: Option<f64>,
}Expand description
Tombstone properties that mark a deleted object.
Fields§
§deleted_object_id: ThingsIddloid: deleted object UUID.
delete_date: Option<f64>dld: deletion timestamp.
Trait Implementations§
Source§impl Clone for TombstoneProps
impl Clone for TombstoneProps
Source§fn clone(&self) -> TombstoneProps
fn clone(&self) -> TombstoneProps
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 TombstoneProps
impl Debug for TombstoneProps
Source§impl Default for TombstoneProps
impl Default for TombstoneProps
Source§impl<'de> Deserialize<'de> for TombstoneProps
impl<'de> Deserialize<'de> for TombstoneProps
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 From<TombstoneProps> for Properties
impl From<TombstoneProps> for Properties
Source§fn from(value: TombstoneProps) -> Self
fn from(value: TombstoneProps) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TombstoneProps
impl PartialEq for TombstoneProps
Source§impl Serialize for TombstoneProps
impl Serialize for TombstoneProps
impl StructuralPartialEq for TombstoneProps
Auto Trait Implementations§
impl Freeze for TombstoneProps
impl RefUnwindSafe for TombstoneProps
impl Send for TombstoneProps
impl Sync for TombstoneProps
impl Unpin for TombstoneProps
impl UnsafeUnpin for TombstoneProps
impl UnwindSafe for TombstoneProps
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