pub trait RustSBI { // Required method fn handle_ecall( &self, extension: usize, function: usize, param: [usize; 6], ) -> SbiRet; }
RustSBI environment call handler.
Handle supervisor environment call with given parameters and return the SbiRet result.
SbiRet