pub struct ContractUpdateHistoryItem {
pub display_name: Option<String>,
pub order_amount: Option<String>,
pub order_date: Option<DateTime<Utc>>,
pub order_type: Option<String>,
pub value: Option<String>,
}
Expand description
Contains the changed parameter.
Fields§
§display_name: Option<String>
Display name of the changed parameter.\n
order_amount: Option<String>
The amount.\n
order_date: Option<DateTime<Utc>>
The epoch when the changed was done.\n
order_type: Option<String>
The contract parameter updated.\n
value: Option<String>
The pip-sized barrier value.\n
Trait Implementations§
Source§impl Clone for ContractUpdateHistoryItem
impl Clone for ContractUpdateHistoryItem
Source§fn clone(&self) -> ContractUpdateHistoryItem
fn clone(&self) -> ContractUpdateHistoryItem
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 ContractUpdateHistoryItem
impl Debug for ContractUpdateHistoryItem
Source§impl<'de> Deserialize<'de> for ContractUpdateHistoryItem
impl<'de> Deserialize<'de> for ContractUpdateHistoryItem
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 ContractUpdateHistoryItem
impl RefUnwindSafe for ContractUpdateHistoryItem
impl Send for ContractUpdateHistoryItem
impl Sync for ContractUpdateHistoryItem
impl Unpin for ContractUpdateHistoryItem
impl UnwindSafe for ContractUpdateHistoryItem
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