pub enum Component<'a> {
Uuid(Uuid),
FixedLengthString(&'a str),
Identifier(&'a Identifier),
DateTime(DateTime<Utc>),
Json(&'a Json),
}Expand description
A byte-serializable value, frequently employed in the keys of key/value store.