Skip to main content

TeaqlBoxedRelations

Trait TeaqlBoxedRelations 

Source
pub trait TeaqlBoxedRelations: Sized {
    // Required methods
    fn extend_descriptor(descriptor: &mut EntityDescriptor);
    fn extract_from_record(record: &Record) -> Result<Self, EntityError>;
    fn inject_into_record(self, record: &mut Record);
}

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§