pub struct PipeSubrequestError {
pub state: PipeSubrequestState,
pub from_subreq: bool,
pub error: Box<Error>,
}Fields§
§state: PipeSubrequestState§from_subreq: boolWhether error originated (and was propagated from) subrequest itself (vs. an error that occurred while sending task)
error: Box<Error>Implementations§
Auto Trait Implementations§
impl Freeze for PipeSubrequestError
impl !RefUnwindSafe for PipeSubrequestError
impl Send for PipeSubrequestError
impl Sync for PipeSubrequestError
impl Unpin for PipeSubrequestError
impl UnsafeUnpin for PipeSubrequestError
impl !UnwindSafe for PipeSubrequestError
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