pub struct RouteResult {
pub results: ProcessResult,
pub schema: Option<String>,
pub outcome: RouteOutcome,
}Expand description
The result of routing one event.
Fields§
§results: ProcessResultEvaluation results (empty when dropped or errored).
schema: Option<String>The classified schema name, or None when unrecognized.
outcome: RouteOutcomeWhat the router did.
Auto Trait Implementations§
impl Freeze for RouteResult
impl RefUnwindSafe for RouteResult
impl Send for RouteResult
impl Sync for RouteResult
impl Unpin for RouteResult
impl UnsafeUnpin for RouteResult
impl UnwindSafe for RouteResult
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