pub enum MiddlewareAction {
Proceed,
Respond {
response: Response,
validate_origin: bool,
validate_hosts: bool,
},
}
Request middleware action
Proceed with standard JSON-RPC behaviour.
Terminate the request and return a response.
Show fields
Fields of Respond
Should origin be validated before returning the response?
Should hosts be validated before returning the response?
Formats the value using the given formatter. Read more
impl<T> Any for T where
T: 'static + ?Sized,
[src]
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.