authorized 0.1.1

Authorized struct's fields
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::scope::ParseScopeErr;

#[derive(Debug)]
pub enum AuthorizedError {
    ParseScopeError(ParseScopeErr),
}

impl From<ParseScopeErr> for AuthorizedError {
    fn from(error: ParseScopeErr) -> Self {
        Self::ParseScopeError(error)
    }
}