Trait elm_parser::parser_helpers::Cell
source · pub trait Cell<T> {
// Required methods
fn init_cell(id: u32, parent_id: u32, s: T) -> DataCell;
fn push_cell(parent: &mut DataCell, id: u32, s: T);
fn add_cell(add_to: &mut DataCell, parent_id: u32, id: u32, text: T);
}
Required Methods§
fn init_cell(id: u32, parent_id: u32, s: T) -> DataCell
fn push_cell(parent: &mut DataCell, id: u32, s: T)
fn add_cell(add_to: &mut DataCell, parent_id: u32, id: u32, text: T)
Object Safety§
This trait is not object safe.