pub struct WebhookResponseData {
pub id: String,
}Available on crate feature
webhook only.Expand description
Data payload for response webhook events.
Fields§
§id: StringThe unique ID of the model response.
Trait Implementations§
Source§impl Clone for WebhookResponseData
impl Clone for WebhookResponseData
Source§fn clone(&self) -> WebhookResponseData
fn clone(&self) -> WebhookResponseData
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 WebhookResponseData
impl Debug for WebhookResponseData
Source§impl<'de> Deserialize<'de> for WebhookResponseData
impl<'de> Deserialize<'de> for WebhookResponseData
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 PartialEq for WebhookResponseData
impl PartialEq for WebhookResponseData
Source§impl Serialize for WebhookResponseData
impl Serialize for WebhookResponseData
impl StructuralPartialEq for WebhookResponseData
Auto Trait Implementations§
impl Freeze for WebhookResponseData
impl RefUnwindSafe for WebhookResponseData
impl Send for WebhookResponseData
impl Sync for WebhookResponseData
impl Unpin for WebhookResponseData
impl UnwindSafe for WebhookResponseData
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