Skip to main content

TeaqlBoxedRelations

Trait TeaqlBoxedRelations 

Source
pub trait TeaqlBoxedRelations: Sized {
    // Required methods
    fn extend_descriptor(descriptor: &mut EntityDescriptor);
    fn extract_from_values(values: &CompactRow) -> Result<Self, EntityError>;
    fn inject_into_values(self, values: &mut BTreeMap<String, Value>);
}

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<T: TeaqlBoxedRelations> TeaqlBoxedRelations for Box<T>

Implementors§