pub type Fallible<T> = Result<T, Error>;
The return type for IDL operations that can throw DOM exceptions.
enum Fallible<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value