pub trait Handleable {
    // Required method
    fn handle(self, ctx: &Context<'_>) -> Result<(), Error>;
}

Required Methods§

source

fn handle(self, ctx: &Context<'_>) -> Result<(), Error>

Implementations on Foreign Types§

source§

impl Handleable for EpochRetrievalRequest

source§

fn handle(self, ctx: &Context<'_>) -> Result<(), Error>

source§

impl Handleable for ProposalMsg

source§

fn handle(self, ctx: &Context<'_>) -> Result<(), Error>

source§

impl Handleable for SyncInfo

source§

fn handle(self, ctx: &Context<'_>) -> Result<(), Error>

source§

impl Handleable for VoteMsg

source§

fn handle(self, ctx: &Context<'_>) -> Result<(), Error>

source§

impl Handleable for EpochChangeProof

source§

fn handle(self, ctx: &Context<'_>) -> Result<(), Error>

Implementors§