pub trait TableEntry {
// Required methods
fn handle(&self) -> Handle;
fn set_handle(&mut self, handle: Handle);
fn name(&self) -> &str;
fn set_name(&mut self, name: String);
// Provided method
fn is_standard(&self) -> bool { ... }
}Expand description
Base trait for all table entries
Required Methods§
Sourcefn set_handle(&mut self, handle: Handle)
fn set_handle(&mut self, handle: Handle)
Set the entry’s handle
Provided Methods§
Sourcefn is_standard(&self) -> bool
fn is_standard(&self) -> bool
Check if this is a standard/default entry