ibc_query::utils

Trait IntoResponse

source
pub trait IntoResponse<Raw>: Sized
where Self: Into<Raw>,
{ // Provided method fn into_response(self) -> Result<Response<Raw>, Status> { ... } }

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T, Raw> IntoResponse<Raw> for T
where T: Into<Raw>,