pub trait ToValueOptional {
    fn to_value_optional(s: Option<&Self>) -> Value;
}
Expand description

Trait to convert an Option to a Value for optional types.

Required methods

Convert an Option to a Value.

Implementations on Foreign Types

Implementors