Trait preserves::value::domain::DomainParse

source ·
pub trait DomainParse<D: Embeddable> {
    // Required method
    fn parse_embedded(&mut self, v: &IOValue) -> Result<D>;
}
Expand description

Implementations parse IOValues to their own particular Embeddable values of type D.

Required Methods§

source

fn parse_embedded(&mut self, v: &IOValue) -> Result<D>

Implementations on Foreign Types§

source§

impl<'a, D: Embeddable, T: DomainParse<D>> DomainParse<D> for &'a mut T

source§

fn parse_embedded(&mut self, v: &IOValue) -> Result<D>

Implementors§