pub trait Key {
type Owned: 'static;
// Required methods
fn to_owned(&self) -> Self::Owned;
fn eq(&self, other: &Self::Owned) -> bool;
}
Expand description
The key of a widget.
You should generally not need to care about this trait.