Trait IntoDomain

Source
pub trait IntoDomain<T> {
    // Required method
    fn into_domain(self) -> T;
}

Required Methods§

Source

fn into_domain(self) -> T

Implementations on Foreign Types§

Source§

impl<T, Raw> IntoDomain<T> for Request<Raw>
where T: From<Raw>,

Source§

fn into_domain(self) -> T

Implementors§