Trait AppEntryCollect

Source
pub trait AppEntryCollect {
    // Required methods
    fn show_all_entry(self) -> Self;
    fn register_handlers(self) -> Self;
}

Required Methods§

Source

fn show_all_entry(self) -> Self

Source

fn register_handlers(self) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<T> AppEntryCollect for App<T>
where T: ServiceFactory<ServiceRequest, Config = (), Error = Error, InitError = ()>,

Source§

fn show_all_entry(self) -> Self

Source§

fn register_handlers(self) -> Self

Implementors§