pub trait FlashPermissions {
    // Required method
    fn check_net<T: AsRef<str>>(
        &mut self,
        _host: &(T, Option<u16>),
        _api_name: &str
    ) -> Result<(), AnyError>;
}

Required Methods§

source

fn check_net<T: AsRef<str>>( &mut self, _host: &(T, Option<u16>), _api_name: &str ) -> Result<(), AnyError>

Implementors§