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