pub struct AmendmentRecord {
pub amended_by: String,
pub amended_at: DateTime<Utc>,
pub amendment_type: AmendmentType,
pub reason: Option<String>,
}Expand description
Record of a human amendment to an artifact (v0.3.4).
Tracks who amended the artifact, when, and how — for audit trail purposes.
Fields§
§amended_by: StringWho performed the amendment (e.g., “human”, reviewer name).
amended_at: DateTime<Utc>When the amendment was made.
amendment_type: AmendmentTypeWhat kind of amendment was performed.
reason: Option<String>Optional reason for the amendment.
Trait Implementations§
Source§impl Clone for AmendmentRecord
impl Clone for AmendmentRecord
Source§fn clone(&self) -> AmendmentRecord
fn clone(&self) -> AmendmentRecord
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 AmendmentRecord
impl Debug for AmendmentRecord
Source§impl<'de> Deserialize<'de> for AmendmentRecord
impl<'de> Deserialize<'de> for AmendmentRecord
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 AmendmentRecord
impl PartialEq for AmendmentRecord
Source§impl Serialize for AmendmentRecord
impl Serialize for AmendmentRecord
impl Eq for AmendmentRecord
impl StructuralPartialEq for AmendmentRecord
Auto Trait Implementations§
impl Freeze for AmendmentRecord
impl RefUnwindSafe for AmendmentRecord
impl Send for AmendmentRecord
impl Sync for AmendmentRecord
impl Unpin for AmendmentRecord
impl UnsafeUnpin for AmendmentRecord
impl UnwindSafe for AmendmentRecord
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.