Trait nitroglycerin::convert::FromAttributeValue[][src]

pub trait FromAttributeValue: Sized {
    fn try_from_av(av: AttributeValue) -> Result<Self, AttributeError>;
}
Expand description

Trait for types that can be created from AttribueValues

Required methods

try convert the attribute value into Self

Errors

Will return an error value could not be parsed into Self

Implementations on Foreign Types

Implementors