Trait rocket::handler::Cloneable[][src]

pub trait Cloneable {
    fn clone_handler(&self) -> Box<dyn Handler>;
}
Expand description

Unfortunate but necessary hack to be able to clone a Box<dyn Handler>.

This trait should never (and cannot, due to coherence) be implemented by any type. Instead, implement Clone. All types that implement Clone and Handler automatically implement Cloneable.

Required methods

fn clone_handler(&self) -> Box<dyn Handler>[src]

Clones self.

Implementors

impl<T: Handler + Clone> Cloneable for T[src]

fn clone_handler(&self) -> Box<dyn Handler>[src]