[][src]Struct rustwebact::rwa_html::HtmlActor

pub struct HtmlActor<T> { /* fields omitted */ }

Implementations

impl<T> HtmlActor<T> where
    T: 'static + Send + Sync
[src]

pub fn new<R>(
    nom: &'static str,
    st: T,
    render: R,
    mail: Vec<(&'static str, &'static str, Box<dyn Send + Sync + FnMut(&mut T, &Value) -> bool + 'static>)>
) -> HtmlActor<T> where
    R: 'static + Send + Sync + Fn(&T) -> String
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for HtmlActor<T>

impl<T> Send for HtmlActor<T> where
    T: Send

impl<T> Sync for HtmlActor<T> where
    T: Send

impl<T> Unpin for HtmlActor<T>

impl<T> UnwindSafe for HtmlActor<T>

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.