pub trait KeySeg {
// Required methods
fn parse(string: String) -> Result<Self, Error>
where Self: Sized;
fn raw(&self) -> String;
fn to_db_key(&self) -> DbKeySeg;
}Expand description
Represents a segment in a path that may be used as a database key