Skip to main content

Procedure

Trait Procedure 

Source
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.

Implementors§

Source§

impl<T> Procedure for T
where T: for<'a, 'tx> Routine<ProcedureContext<'a, 'tx>> + ?Sized,