Option
Represents either a value, or nothing
If you need to distinguish between a missing field and a null field you should use OptionOrNull
Option val
none
Missing or null
some
A value
get
get_result
from
use like Option.from(Ok(val))
from_result : Result a * ->
Convert a result with any Err to an Option