pub trait Factor {
// Required methods
fn factor(&self) -> Self;
fn factor_out_gcd(&self) -> Self;
fn factor_common(&self) -> Self;
}Expand description
Trait for factoring expressions
Required Methods§
fn factor(&self) -> Self
fn factor_out_gcd(&self) -> Self
fn factor_common(&self) -> Self
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.