Skip to main content

extract_erased

Function extract_erased 

Source
pub fn extract_erased(
    result: Box<dyn Any + Send + Sync>,
) -> Option<ErasedResultFields>
Expand description

Extract erased result fields from a type-erased handler result.

Takes ownership of the Box — the executor consumes the result. Logs a warning if the downcast fails (indicates a handler returned the wrong type — a framework bug, not a plugin error).