pub trait TableHeaderRowExt {
// Required method
fn header_cell(
&mut self,
text: &str,
sort_up: &Option<bool>,
previous_response: &ColResponse,
org_colors: &[[u8; 3]],
user_colors: &[[u8; 3]],
) -> Result<ColResponse, TableError>;
}Required Methods§
fn header_cell( &mut self, text: &str, sort_up: &Option<bool>, previous_response: &ColResponse, org_colors: &[[u8; 3]], user_colors: &[[u8; 3]], ) -> Result<ColResponse, TableError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".