pub trait Stor<Inner: Debug = ()>: Debug {
    type List: AsRef<[Inner]> + Debug;
    type String: AsRef<str> + Debug;
    type Bytes: AsRef<[u8]> + Debug;
}
Expand description

Stor trait defines types for references

Associated Types

Type for holding lists of Inner objects

Type for holding strings

Type for holding bytes

Implementors