pub struct OrderProductHistoryEntry {
pub changed: String,
pub changes: String,
}Expand description
A single history entry recording a change made to an ordered product.
Fields§
§changed: StringThe date and time when the change occurred (ISO 8601 string).
changes: StringA human-readable description of what changed.
Trait Implementations§
Source§impl Clone for OrderProductHistoryEntry
impl Clone for OrderProductHistoryEntry
Source§fn clone(&self) -> OrderProductHistoryEntry
fn clone(&self) -> OrderProductHistoryEntry
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 OrderProductHistoryEntry
impl Debug for OrderProductHistoryEntry
Source§impl<'de> Deserialize<'de> for OrderProductHistoryEntry
impl<'de> Deserialize<'de> for OrderProductHistoryEntry
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 OrderProductHistoryEntry
impl RefUnwindSafe for OrderProductHistoryEntry
impl Send for OrderProductHistoryEntry
impl Sync for OrderProductHistoryEntry
impl Unpin for OrderProductHistoryEntry
impl UnsafeUnpin for OrderProductHistoryEntry
impl UnwindSafe for OrderProductHistoryEntry
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