pub struct AbortEvent {
pub call_id: String,
pub steps_completed: u32,
}Expand description
A streaming call was aborted by cancellation.
Fields§
§call_id: StringCall id.
steps_completed: u32Steps completed before the abort.
Trait Implementations§
Source§impl Clone for AbortEvent
impl Clone for AbortEvent
Source§fn clone(&self) -> AbortEvent
fn clone(&self) -> AbortEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AbortEvent
impl RefUnwindSafe for AbortEvent
impl Send for AbortEvent
impl Sync for AbortEvent
impl Unpin for AbortEvent
impl UnsafeUnpin for AbortEvent
impl UnwindSafe for AbortEvent
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