Trait OptionAdd  
pub trait OptionAdd<Rhs = Self, InnerRhs = Rhs> {
    type Output;
    // Required method
    fn opt_add(self, rhs: Rhs) -> Option<Self::Output>;
}Expand description
Trait for values and Options addition.
Implementing this trait leads to the following auto-implementations:
- OptionAdd<Option<InnerRhs>>for- T.
- OptionAdd<Rhs>for- Option<T>.
- OptionAdd<Option<InnerRhs>>for- Option<T>.
- … and some variants with references.
This trait is auto-implemented for OptionOperations types implementing
Add<Rhs>.
Required Associated Types§
type Output
type Output
The resulting inner type after applying the addition.