pub struct BackendCompletion {
pub id: u64,
pub result: Result<CompletionPayload>,
}Expand description
Backend completion payload.
Delivered from the backend to the ring when an operation completes, successfully or with an error.
Fields§
§id: u64Stable request id matching the original submission.
result: Result<CompletionPayload>Completion result containing the payload or an error.
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for BackendCompletion
impl !UnwindSafe for BackendCompletion
impl Freeze for BackendCompletion
impl Send for BackendCompletion
impl Sync for BackendCompletion
impl Unpin for BackendCompletion
impl UnsafeUnpin for BackendCompletion
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