J
jeremy
Video
The Option Type for Representing Nullable Values in Rust
The Option type is a generic enum with two variants, `Some(T)` (holding a present value of type T) and `None` (representing absence), that lets a language express "a value might not exist" within the…