pub trait NameValue {
    fn name(&self) -> &[u8]ⓘNotable traits for &[u8]impl Read for &[u8]impl Write for &mut [u8];
    fn value(&self) -> &[u8]ⓘNotable traits for &[u8]impl Read for &[u8]impl Write for &mut [u8];
}
Expand description

A trait for types with associated string name and value.

Required Methods

Returns the object’s name.

Returns the object’s value.

Implementations on Foreign Types

Implementors