Basic synchronous GET with XHR

This commit is contained in:
Manish Goregaokar 2014-05-07 12:30:02 +05:30
parent 146eccdf80
commit b40d8b4d53
6 changed files with 218 additions and 28 deletions

View file

@ -19,7 +19,10 @@ pub enum Error {
InvalidCharacter,
NotSupported,
InvalidState,
NamespaceError
Syntax,
NamespaceError,
Security,
Network
}
pub type Fallible<T> = Result<T, Error>;