pub struct ResponseFailedEvent {
pub type: String,
pub response: Response,
}
Expand description
An event that is emitted when a response fails.
Fields§
§type: String
The type of the event.
response: Response
The response that failed.
Trait Implementations§
Source§impl Clone for ResponseFailedEvent
impl Clone for ResponseFailedEvent
Source§fn clone(&self) -> ResponseFailedEvent
fn clone(&self) -> ResponseFailedEvent
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 moreAuto Trait Implementations§
impl Freeze for ResponseFailedEvent
impl RefUnwindSafe for ResponseFailedEvent
impl Send for ResponseFailedEvent
impl Sync for ResponseFailedEvent
impl Unpin for ResponseFailedEvent
impl UnwindSafe for ResponseFailedEvent
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