fumnet 0.2.3

Fumnet - authentication library for Ferdowsi University of Mashhad captive portal
Documentation
1
2
3
4
5
6
7
8
#[derive(Debug)]
pub enum Error {
    NotInFumNet,
    ReqwestError(reqwest::Error),
    PortalNotAvailable,
}

pub type Result<T> = std::result::Result<T, Error>;