pub trait AsStoreRef {
// Required method
fn as_store_ref(&self) -> StoreRef<'_>;
}
Expand description
Helper trait for a value that is convertible to a StoreRef
.
Required Methods§
sourcefn as_store_ref(&self) -> StoreRef<'_>
fn as_store_ref(&self) -> StoreRef<'_>
Returns a StoreRef
pointing to the underlying context.