pub type SyscallResult = Result<u64, SyscallError>;
Aliased Type§
pub enum SyscallResult {
Ok(u64),
Err(SyscallError),
}
Variants§
Trait Implementations§
Source§impl From<SyscallError> for SyscallResult
impl From<SyscallError> for SyscallResult
Source§fn from(error: SyscallError) -> Self
fn from(error: SyscallError) -> Self
Converts to this type from the input type.