pub trait ValueRef: ToOwned + AsRef<[u8]> + Send + Sync + 'static {
    fn from_bytes(s: &[u8]) -> &Self;
}
Expand description

The borrowed type of a variable-length value.

Required Methods§

Implementations on Foreign Types§

Implementors§