pub trait BoundedChainComplex: ChainComplex {
// Required method
fn max_s(&self) -> i32;
// Provided method
fn euler_characteristic(&self, t: i32) -> isize { ... }
}Expand description
A bounded chain complex is a chain complex C for which C_s = 0 for all s >= max_s
Required Methods§
Provided Methods§
fn euler_characteristic(&self, t: i32) -> isize
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.