Trait restify_core::Controller

source ·
pub trait Controller {
    type Context;
    type Return;

    // Required method
    fn configure(ctx: &mut Self::Context) -> ControllerDetails<Self::Return>;
}

Required Associated Types§

Required Methods§

source

fn configure(ctx: &mut Self::Context) -> ControllerDetails<Self::Return>

Object Safety§

This trait is not object safe.

Implementors§