Skip to main content

SubmitDataSourceErased

Trait SubmitDataSourceErased 

Source
pub(crate) trait SubmitDataSourceErased {
    // Required method
    fn submit_erased<'life0, 'async_trait>(
        &'life0 self,
        tx: Transaction,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Network-agnostic submit hook used by the axum wrapper. The original SubmitDataSource<N, P> trait is parameterized by the network type; this erased trait lets NodeApiStateImpl avoid carrying those parameters.

Required Methods§

Source

fn submit_erased<'life0, 'async_trait>( &'life0 self, tx: Transaction, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementations on Foreign Types§

Source§

impl<N, P, D> SubmitDataSourceErased for ExtensibleDataSource<D, ApiState<N, P>>
where N: ConnectedNetwork<PubKey>, P: SequencerPersistence, D: Send + Sync,

Source§

fn submit_erased<'life0, 'async_trait>( &'life0 self, tx: Transaction, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§