pub struct UpdateEntry {
pub date: DateTime<Utc>,
pub by: String,
}Expand description
One entry in an item’s history or a comment’s edits audit list.
Records who touched the artifact and when.
Fields§
§date: DateTime<Utc>§by: StringTrait Implementations§
Source§impl Clone for UpdateEntry
impl Clone for UpdateEntry
Source§fn clone(&self) -> UpdateEntry
fn clone(&self) -> UpdateEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UpdateEntry
impl Debug for UpdateEntry
Source§impl<'de> Deserialize<'de> for UpdateEntry
impl<'de> Deserialize<'de> for UpdateEntry
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 PartialEq for UpdateEntry
impl PartialEq for UpdateEntry
Source§fn eq(&self, other: &UpdateEntry) -> bool
fn eq(&self, other: &UpdateEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UpdateEntry
impl Serialize for UpdateEntry
impl StructuralPartialEq for UpdateEntry
Auto Trait Implementations§
impl Freeze for UpdateEntry
impl RefUnwindSafe for UpdateEntry
impl Send for UpdateEntry
impl Sync for UpdateEntry
impl Unpin for UpdateEntry
impl UnsafeUnpin for UpdateEntry
impl UnwindSafe for UpdateEntry
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