pub trait CellBuilding {
// Provided methods
fn geom_opt_cell_template(template_cell: &CellDocument) -> CellDocument { ... }
fn bs_cell_template(template_cell: &CellDocument) -> CellDocument { ... }
fn build_cell_for_task(
&self,
template_cell: &CellDocument,
castep_task: CastepTask,
) -> CellDocument { ... }
}Provided Methods§
fn geom_opt_cell_template(template_cell: &CellDocument) -> CellDocument
fn bs_cell_template(template_cell: &CellDocument) -> CellDocument
fn build_cell_for_task( &self, template_cell: &CellDocument, castep_task: CastepTask, ) -> CellDocument
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.