pub struct WebhookCallResponse {
pub exception: Option<String>,
pub status_code: Option<i32>,
pub url: Option<String>,
}
Expand description
WebhookCallResponse : A webhook call response.
Fields§
§exception: Option<String>
§status_code: Option<i32>
§url: Option<String>
Implementations§
Source§impl WebhookCallResponse
impl WebhookCallResponse
Sourcepub fn new() -> WebhookCallResponse
pub fn new() -> WebhookCallResponse
A webhook call response.
Trait Implementations§
Source§impl Clone for WebhookCallResponse
impl Clone for WebhookCallResponse
Source§fn clone(&self) -> WebhookCallResponse
fn clone(&self) -> WebhookCallResponse
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 WebhookCallResponse
impl Debug for WebhookCallResponse
Source§impl Default for WebhookCallResponse
impl Default for WebhookCallResponse
Source§fn default() -> WebhookCallResponse
fn default() -> WebhookCallResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookCallResponse
impl<'de> Deserialize<'de> for WebhookCallResponse
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 WebhookCallResponse
impl PartialEq for WebhookCallResponse
Source§impl Serialize for WebhookCallResponse
impl Serialize for WebhookCallResponse
impl StructuralPartialEq for WebhookCallResponse
Auto Trait Implementations§
impl Freeze for WebhookCallResponse
impl RefUnwindSafe for WebhookCallResponse
impl Send for WebhookCallResponse
impl Sync for WebhookCallResponse
impl Unpin for WebhookCallResponse
impl UnwindSafe for WebhookCallResponse
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