Trait rustless::framework::api_handler::ApiHandler [] [src]

pub trait ApiHandler: Typeable {
    fn api_call<'a, 'b>(
        &'a self,
        _: &str,
        _: &mut JsonValue,
        _: &'b mut Request + 'b,
        _: &mut CallInfo<'a>
    ) -> HandleResult<Response>; }

Required Methods

Methods

impl ApiHandler
[src]

Is this Error object of type E?

If this error is E, downcast this error to E, by reference.

Returns some mutable reference to the boxed value if it is of type T, or None if it isn't.

Returns a mutable reference to the boxed value, blindly assuming it to be of type T. If you are not absolutely certain of T, you must not call this.

Implementors