EntExt

Trait EntExt 

Source
pub trait EntExt: Ent {
    // Required method
    fn load_edge_typed<E: Ent>(&self, name: &str) -> DatabaseResult<Vec<E>>;
}

Required Methods§

Source

fn load_edge_typed<E: Ent>(&self, name: &str) -> DatabaseResult<Vec<E>>

Loads ents of a specified type from a named edge

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T: Ent> EntExt for T