pub trait Trs<W: Semiring>: Deref<Target = [Tr<W>]> + Debug {
// Required methods
fn trs(&self) -> &[Tr<W>];
fn to_trs_vec(&self) -> TrsVec<W>;
fn shallow_clone(&self) -> Self;
}
Required Methods§
fn trs(&self) -> &[Tr<W>]
fn to_trs_vec(&self) -> TrsVec<W>
fn shallow_clone(&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.