pub const NONE: Option<String>;Expand description
A convenience constant for None values used as generic arguments.
Functions that take Option<T> as an argument often require the caller to use a turbofish when the
variant is None. In many cases this constant can be used instead.