pub struct WebhookResponse {
pub status: StatusCode,
pub body: Bytes,
}Expand description
Response returned after a webhook delivery attempt.
Fields§
§status: StatusCodeHTTP status code returned by the endpoint.
body: BytesResponse body bytes.
Auto Trait Implementations§
impl !Freeze for WebhookResponse
impl RefUnwindSafe for WebhookResponse
impl Send for WebhookResponse
impl Sync for WebhookResponse
impl Unpin for WebhookResponse
impl UnsafeUnpin for WebhookResponse
impl UnwindSafe for WebhookResponse
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