[−][src]Trait try_traits::ops::TryAdd
The try trait for Add
.
Associated Types
type Error
The type returned in the event of an error.
type Output
The type returned after performing the operation.
Required methods
fn try_add(self, other: Rhs) -> Result<Self::Output, Self::Error>
The fallible equivalent of Add::add
.