pub trait Context: Send + Sync { type Ctx; // Required method fn ctx(&self) -> &Self::Ctx; }
Context Interface used to pass around any kind of state that the RPC command will use.