pub trait TryExtendFromSelf {
// Required method
fn try_extend_from_self(&mut self, other: &Self) -> PolarsResult<()>;
}
Expand description
A trait describing the ability of a struct to extend from a reference of itself.
Specialization of TryExtend
.
Required Methods§
Sourcefn try_extend_from_self(&mut self, other: &Self) -> PolarsResult<()>
fn try_extend_from_self(&mut self, other: &Self) -> PolarsResult<()>
Tries to extend itself with elements from other
, failing only on overflow.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.