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