[][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

use saphir::*;
use saphir::controller::BasicController;
 
let u8_context = 1;
let u8_controller = BasicController::new("/test", 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

use saphir::*;
use saphir::controller::BasicController;
 
let u8_context = 1;
let u8_controller = BasicController::new("/test", 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> !RefUnwindSafe for BasicController<C>

impl<C> Send for BasicController<C>

impl<C> Sync for BasicController<C>

impl<C> Unpin for BasicController<C> where
    C: Unpin

impl<C> !UnwindSafe for BasicController<C>

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.