[][src]Struct saphir::controller::BasicController

pub struct BasicController<C> { /* fields omitted */ }

An helper struct embedding a ControllerDispatch.

Methods

impl<C: Send + Sync> BasicController<C>[src]

pub fn new(name: &str, controller_context: C) -> Self[src]

pub fn add<F>(&self, method: Method, path: &str, delegate_func: F) where
    F: 'static + Fn(&'r C, &'s SyncRequest, &'t0 mut SyncResponse), 
[src]

Add a delegate function to handle a particular request

Example

let u8_context = 1;
let u8_controller = BasicController::new(u8_context);
u8_controller.add(Method::Get, "^/test$", |ctx, req, res| { println!("this will handle Get request done on <your_host>/test")});

pub fn add_with_guards<F>(
    &self,
    method: Method,
    path: &str,
    guards: RequestGuardCollection,
    delegate_func: F
) where
    F: 'static + Fn(&'r C, &'s SyncRequest, &'t0 mut SyncResponse), 
[src]

Add a delegate function to handle a particular request

Example

let u8_context = 1;
let u8_controller = BasicController::new(u8_context);
u8_controller.add(Method::Get, "^/test$", |ctx, req, res| { println!("this will handle Get request done on <your_host>/test")});

Trait Implementations

impl<C: Send + Sync> Controller for BasicController<C>[src]

Auto Trait Implementations

impl<C> Send for BasicController<C>

impl<C> Sync for BasicController<C>

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Erased for T