pub struct SendOutputsError {
pub sent_ok: Option<usize>,
pub err: OutputError,
}Expand description
First error after sending multiple outputs
Fields§
§sent_ok: Option<usize>The number of outputs that have been sent successfully before an error occurred.
This could only be set if the outputs are sent subsequently and in order.
If None then it is unknown which outputs have arrived at their destination
despite the error.
err: OutputErrorThe actual error that occurred.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SendOutputsError
impl RefUnwindSafe for SendOutputsError
impl Send for SendOutputsError
impl Sync for SendOutputsError
impl Unpin for SendOutputsError
impl UnwindSafe for SendOutputsError
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