pub type Result<T> = Result<T, RwError>;
The result type for the frontend crate.
enum Result<T> { Ok(T), Err(RwError), }
Contains the success value
Contains the error value