pub trait TensorBitXorAssignAPI<TRB> {
// Required method
fn bitxor_assign_f(a: Self, b: TRB) -> Result<()>;
// Provided method
fn bitxor_assign(a: Self, b: TRB)
where Self: Sized { ... }
}
Required Methods§
fn bitxor_assign_f(a: Self, b: TRB) -> Result<()>
Provided Methods§
fn bitxor_assign(a: Self, b: TRB)where
Self: Sized,
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.