pub trait NeoContractEntry {
// Required methods
fn deploy() -> NeoResult<()>;
fn update() -> NeoResult<()>;
fn destroy() -> NeoResult<()>;
}Expand description
Neo N3 Contract Entry Point
Required Methods§
fn deploy() -> NeoResult<()>
fn update() -> NeoResult<()>
fn destroy() -> NeoResult<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.