pub trait ServerChecker: Send {
    fn check(&mut self, ctx: &RpcContext<'_>) -> CheckResult;
    fn box_clone(&self) -> Box<dyn ServerChecker>;
}

Required Methods

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Implementors