pub struct Group<'a, S = ()> { /* private fields */ }Implementationsยง
Trait Implementationsยง
Sourceยงimpl<'a, S> Methods<S, Body> for Group<'a, S>
impl<'a, S> Methods<S, Body> for Group<'a, S>
fn post<T, H>(&mut self, path: &str, handler: H)where
H: Handler<T, S>,
T: 'static,
fn get<T, H>(&mut self, path: &str, handler: H)where
H: Handler<T, S>,
T: 'static,
fn put<T, H>(&mut self, path: &str, handler: H)where
H: Handler<T, S>,
T: 'static,
fn delete<T, H>(&mut self, path: &str, handler: H)where
H: Handler<T, S>,
T: 'static,
fn head<T, H>(&mut self, path: &str, handler: H)where
H: Handler<T, S>,
T: 'static,
fn options<T, H>(&mut self, path: &str, handler: H)where
H: Handler<T, S>,
T: 'static,
fn patch<T, H>(&mut self, path: &str, handler: H)where
H: Handler<T, S>,
T: 'static,
fn trace<T, H>(&mut self, path: &str, handler: H)where
H: Handler<T, S>,
T: 'static,
Auto Trait Implementationsยง
impl<'a, S> Freeze for Group<'a, S>
impl<'a, S = ()> !RefUnwindSafe for Group<'a, S>
impl<'a, S> Send for Group<'a, S>where
S: Send,
impl<'a, S = ()> !Sync for Group<'a, S>
impl<'a, S> Unpin for Group<'a, S>
impl<'a, S = ()> !UnwindSafe for Group<'a, S>
Blanket Implementationsยง
Sourceยงimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Sourceยงfn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more