MCPcopy Create free account
hub / github.com/casper-network/casper-node / Args

Interface Args

execution_engine/src/runtime/args.rs:3–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1use casper_wasmi::{FromValue, RuntimeArgs, Trap};
2
3pub(crate) trait Args
4where
5 Self: Sized,
6{
7 fn parse(args: RuntimeArgs) -> Result<Self, Trap>;
8}
9
10impl<T1> Args for (T1,)
11where

Callers

nothing calls this directly

Implementers 1

args.rsexecution_engine/src/runtime/args.rs

Calls

no outgoing calls

Tested by

no test coverage detected