Trait TryIntoDomain

Source
pub trait TryIntoDomain<T> {
    // Required method
    fn try_into_domain(self) -> Result<T, Status>;
}

Required Methods§

Implementations on Foreign Types§

Source§

impl<T, Raw> TryIntoDomain<T> for Request<Raw>
where T: TryFrom<Raw, Error = QueryError>,

Implementors§