Trait re_viewer::external::arrow2::array::TryExtendFromSelf
pub trait TryExtendFromSelf {
// Required method
fn try_extend_from_self(&mut self, other: &Self) -> Result<(), Error>;
}
Expand description
A trait describing the ability of a struct to extend from a reference of itself.
Specialization of TryExtend
.
Required Methods§
fn try_extend_from_self(&mut self, other: &Self) -> Result<(), Error>
fn try_extend_from_self(&mut self, other: &Self) -> Result<(), Error>
Tries to extend itself with elements from other
, failing only on overflow.
Object Safety§
This trait is not object safe.