pub enum ProbeInvocationError {
Domain(ProbeError),
Runtime(RuntimeFailure),
}Expand description
Keeps typed domain outcomes separate from runtime failures.
Variants§
Domain(ProbeError)
Runtime(RuntimeFailure)
Trait Implementations§
Source§impl Clone for ProbeInvocationError
impl Clone for ProbeInvocationError
Source§fn clone(&self) -> ProbeInvocationError
fn clone(&self) -> ProbeInvocationError
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 moreSource§impl Debug for ProbeInvocationError
impl Debug for ProbeInvocationError
impl Eq for ProbeInvocationError
Source§impl PartialEq for ProbeInvocationError
impl PartialEq for ProbeInvocationError
impl StructuralPartialEq for ProbeInvocationError
Auto Trait Implementations§
impl Freeze for ProbeInvocationError
impl RefUnwindSafe for ProbeInvocationError
impl Send for ProbeInvocationError
impl Sync for ProbeInvocationError
impl Unpin for ProbeInvocationError
impl UnsafeUnpin for ProbeInvocationError
impl UnwindSafe for ProbeInvocationError
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