Trait Handler
Source pub trait Handler<'a, State: StateInstance>: Send {
// Provided methods
fn get<'b>(self: Box<Self>) -> Option<GetHandler<'a, 'b, State::Txn, State>>
where 'b: 'a { ... }
fn put<'b>(self: Box<Self>) -> Option<PutHandler<'a, 'b, State::Txn, State>>
where 'b: 'a { ... }
fn post<'b>(
self: Box<Self>,
) -> Option<PostHandler<'a, 'b, State::Txn, State>>
where 'b: 'a { ... }
fn delete<'b>(self: Box<Self>) -> Option<DeleteHandler<'a, 'b, State::Txn>>
where 'b: 'a { ... }
}