Skip to main content

BalProvider

Trait BalProvider 

Source
pub trait BalProvider {
    // Required method
    fn bal_store(&self) -> &BalStoreHandle;
}
Expand description

Provider-side access to BAL storage.

Required Methods§

Source

fn bal_store(&self) -> &BalStoreHandle

Returns the configured BAL store handle.

Implementations on Foreign Types§

Source§

impl<'a, T: 'a + BalProvider + ?Sized> BalProvider for &'a T

Source§

impl<T: BalProvider + ?Sized> BalProvider for Arc<T>

Implementors§

Source§

impl<ChainSpec, N> BalProvider for NoopProvider<ChainSpec, N>