pub trait AggregateFnVTableExt: AggregateFnVTable {
// Provided method
fn bind(&self, options: Self::Options) -> AggregateFnRef { ... }
}Expand description
Factory functions for aggregate vtables.
Provided Methods§
Sourcefn bind(&self, options: Self::Options) -> AggregateFnRef
fn bind(&self, options: Self::Options) -> AggregateFnRef
Bind this vtable with the given options into an AggregateFnRef.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".