Trait Key
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.
Required Associated Types§
type Owned: 'static
type Owned: 'static
The owned version of the key.