pub trait EntityEntryPointsExt {
// Required method
fn add<T: Into<EntityEntryPoint>>(&mut self, ep: T);
}Expand description
Extension trait for adding entry points to casper_types::EntryPoints.
Required Methods§
Sourcefn add<T: Into<EntityEntryPoint>>(&mut self, ep: T)
fn add<T: Into<EntityEntryPoint>>(&mut self, ep: T)
Adds an entry point to the collection.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".