pub trait Nep22Update {
// Required method
fn update(
&self,
nef_file: NeoByteString,
manifest: NeoString,
data: NeoValue,
) -> NeoResult<()>;
}Expand description
NEP-22 update interface.
Required Methods§
fn update( &self, nef_file: NeoByteString, manifest: NeoString, data: NeoValue, ) -> NeoResult<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".