๐ญ Result
Dealing with results
match result?- success โ unwrap()
- error โ returns err up the call chain (e.g. returns function)
- only works if enclosing function has
Resultreturn type
- only works if enclosing function has
result.is_ok(),result.is_error()โ boolresult.ok()โ Option<T> (discards error)result.err()โ Option<E> (discards result)
๐ Links