pub trait TryExtendFromSelf {
    fn try_extend_from_self(&mut self, other: &Self) -> Result<()>;
}
Expand description

A trait describing the ability of a struct to extend from a reference of itself. Specialization of TryExtend.

Required Methods§

Tries to extend itself with elements from other, failing only on overflow.

Implementors§