pub struct WebhookData {
pub time_ms: i64,
pub events: Vec<HashMap<String, String>>,
}Expand description
Webhook data structure matching Sockudo’s format
Fields§
§time_ms: i64The timestamp of the webhook in milliseconds
events: Vec<HashMap<String, String>>The events received with the webhook
Trait Implementations§
Source§impl Clone for WebhookData
impl Clone for WebhookData
Source§fn clone(&self) -> WebhookData
fn clone(&self) -> WebhookData
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 WebhookData
impl Debug for WebhookData
Source§impl<'de> Deserialize<'de> for WebhookData
impl<'de> Deserialize<'de> for WebhookData
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 WebhookData
impl RefUnwindSafe for WebhookData
impl Send for WebhookData
impl Sync for WebhookData
impl Unpin for WebhookData
impl UnsafeUnpin for WebhookData
impl UnwindSafe for WebhookData
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