pub struct NeoVMSyscallInfo {
pub name: &'static str,
pub hash: u32,
pub parameters: &'static [&'static str],
pub return_type: &'static str,
pub gas_cost: u32,
pub description: &'static str,
}Expand description
Neo N3 System Call Information
Fields§
§name: &'static str§hash: u32§parameters: &'static [&'static str]§return_type: &'static str§gas_cost: u32§description: &'static strTrait Implementations§
Source§impl Clone for NeoVMSyscallInfo
impl Clone for NeoVMSyscallInfo
Source§fn clone(&self) -> NeoVMSyscallInfo
fn clone(&self) -> NeoVMSyscallInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NeoVMSyscallInfo
impl Debug for NeoVMSyscallInfo
Source§impl PartialEq for NeoVMSyscallInfo
impl PartialEq for NeoVMSyscallInfo
impl Eq for NeoVMSyscallInfo
impl StructuralPartialEq for NeoVMSyscallInfo
Auto Trait Implementations§
impl Freeze for NeoVMSyscallInfo
impl RefUnwindSafe for NeoVMSyscallInfo
impl Send for NeoVMSyscallInfo
impl Sync for NeoVMSyscallInfo
impl Unpin for NeoVMSyscallInfo
impl UnwindSafe for NeoVMSyscallInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more