pub struct NonceUpdate {
pub action: String,
pub contract_id: TradeAccountId,
pub nonce: u64,
pub onchain_timestamp: Option<String>,
pub seen_timestamp: String,
}Expand description
WebSocket nonce update.
Fields§
§action: String§contract_id: TradeAccountId§nonce: u64§onchain_timestamp: Option<String>§seen_timestamp: StringTrait Implementations§
Source§impl Clone for NonceUpdate
impl Clone for NonceUpdate
Source§fn clone(&self) -> NonceUpdate
fn clone(&self) -> NonceUpdate
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 NonceUpdate
impl Debug for NonceUpdate
Source§impl<'de> Deserialize<'de> for NonceUpdate
impl<'de> Deserialize<'de> for NonceUpdate
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 NonceUpdate
impl RefUnwindSafe for NonceUpdate
impl Send for NonceUpdate
impl Sync for NonceUpdate
impl Unpin for NonceUpdate
impl UnwindSafe for NonceUpdate
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