pub trait IterSum<'a, T: 'a + PartialSum<'a, T>>: Sized + IntoIterator<Item = &'a T> {
// Provided method
fn iter_sum(self) -> Option<T> { ... }
}
Expand description
Front end method for the PartialSum
trait
Provided Methods§
Object Safety§
This trait is not object safe.