pub trait Hashable {
// Required methods
unsafe fn get_id(&self) -> ImGuiID;
unsafe fn push(&self);
}Expand description
Represents any type that can be converted to a Dear ImGui hash id.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".