pub struct FundsWithdrawnWebhookPayloadBlock {
pub number: f64,
pub timestamp: f64,
}Expand description
FundsWithdrawnWebhookPayloadBlock
JSON schema
{
"type": "object",
"required": [
"number",
"timestamp"
],
"properties": {
"number": {
"description": "The block number.",
"type": "number"
},
"timestamp": {
"description": "The block timestamp.",
"type": "number"
}
}
}Fields§
§number: f64§timestamp: f64Trait Implementations§
Source§impl Clone for FundsWithdrawnWebhookPayloadBlock
impl Clone for FundsWithdrawnWebhookPayloadBlock
Source§fn clone(&self) -> FundsWithdrawnWebhookPayloadBlock
fn clone(&self) -> FundsWithdrawnWebhookPayloadBlock
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<'de> Deserialize<'de> for FundsWithdrawnWebhookPayloadBlock
impl<'de> Deserialize<'de> for FundsWithdrawnWebhookPayloadBlock
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 From<&FundsWithdrawnWebhookPayloadBlock> for FundsWithdrawnWebhookPayloadBlock
impl From<&FundsWithdrawnWebhookPayloadBlock> for FundsWithdrawnWebhookPayloadBlock
Source§fn from(value: &FundsWithdrawnWebhookPayloadBlock) -> Self
fn from(value: &FundsWithdrawnWebhookPayloadBlock) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FundsWithdrawnWebhookPayloadBlock
impl RefUnwindSafe for FundsWithdrawnWebhookPayloadBlock
impl Send for FundsWithdrawnWebhookPayloadBlock
impl Sync for FundsWithdrawnWebhookPayloadBlock
impl Unpin for FundsWithdrawnWebhookPayloadBlock
impl UnsafeUnpin for FundsWithdrawnWebhookPayloadBlock
impl UnwindSafe for FundsWithdrawnWebhookPayloadBlock
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