pub type Result<T> = Result<T, FsError>;
enum Result<T> { Ok(T), Err(FsError), }
Contains the success value
Contains the error value