Struct plumber_rs::servlet::Unimplemented[][src]

pub struct Unimplemented {}

The placeholder for a servlet that is not implemented

To implement bootstrap trait, a type needs to give both AsyncServletType and SyncServletType However, not all servlet supports the both mode. This placeholder can be used when the servlet doesn't support the mode.

Trait Implementations

impl SyncServlet for Unimplemented
[src]

The type used to represent the protocol. Read more

The initialization function. Read more

The sync execute function. Read more

The cleanup function Read more

impl AsyncServlet for Unimplemented
[src]

The private data buffer used by the async buffer. Read more

The initialization function. Read more

Initialize the async task. Read more

Run the execution task. Read more

The finalization step of an async task. Read more

The cleanup function Read more

Auto Trait Implementations