pub trait BalProvider {
// Required method
fn bal_store(&self) -> &BalStoreHandle;
}Expand description
Provider-side access to BAL storage.
Required Methods§
Sourcefn bal_store(&self) -> &BalStoreHandle
fn bal_store(&self) -> &BalStoreHandle
Returns the configured BAL store handle.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".