pub trait ZephyrStandard {
// Required method
fn zephyr_standard() -> Result<Self>
where Self: Sized;
}
Expand description
Standard object for Zephyr. This trait must be implemented for all components that are encompassed by the Zephyr VM, specifically the database implementation.
Required Methods§
sourcefn zephyr_standard() -> Result<Self>where
Self: Sized,
fn zephyr_standard() -> Result<Self>where
Self: Sized,
Returns the standard zephyr object.
Implementors§
impl ZephyrStandard for Budget
impl ZephyrStandard for BudgetImpl
impl ZephyrStandard for DimensionLimits
impl ZephyrStandard for InvokedFunctionInfo
By default, Zephyr infers a standard entry point:
the on_close() -> ()
function.