pub trait LinkBuilder {
    type L: Link;

    // Required method
    fn open<'life0, 'async_trait>(
        self,
        geometry: &'life0 Geometry
    ) -> Pin<Box<dyn Future<Output = Result<Self::L, AUTDInternalError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Associated Types§

Required Methods§

source

fn open<'life0, 'async_trait>( self, geometry: &'life0 Geometry ) -> Pin<Box<dyn Future<Output = Result<Self::L, AUTDInternalError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Open link

Implementors§