1/// A Matrix key identifier.
2///
3/// Key identifiers in Matrix are opaque character sequences of `[a-zA-Z_]`. This type is
4/// provided simply for its semantic value.
5#[repr(transparent)]
6#[derive(PartialEq, Eq, PartialOrd, Ord, Hash)]
7pub struct KeyName(str);
89opaque_identifier!(KeyName);