enum Routed {
Framed(Status, Vec<u8>),
Raw(Vec<u8>),
Silent,
}Expand description
Route a request through the typestate pipeline (io::dispatch) and return the
(status, body) the legacy framing still wraps. Used by commands migrated
onto io::Command (docs/typestate_plan.md Phases 2–3).
How a typestate dispatch resolves for process_single: a body that still
flows the common signing/sealing tail, a pre-framed async PDU to send
verbatim (the STATUS_PENDING interim), or nothing at all.
Variants§
Auto Trait Implementations§
impl Freeze for Routed
impl RefUnwindSafe for Routed
impl Send for Routed
impl Sync for Routed
impl Unpin for Routed
impl UnsafeUnpin for Routed
impl UnwindSafe for Routed
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