Rust handles errors in a different way. For recoverable errors, it returns an enum - Result<T,E> . For non-recoverable errors, it will call the macro panic ...
確定! 回上一頁