pub trait Procedure: for<'a, 'tx> Routine<ProcedureContext<'a, 'tx>> { }Expand description
Procedure marker. Empty: every implementor of
Routine<ProcedureContext<'_, '_>> is automatically a Procedure via the
blanket impl below. Exists so dyn Procedure is a real type and so
procedure-only methods have an obvious home if we add any later.