pub type SyscallResult = Result<SyscallReg, SyscallError>;Aliased Type§
pub 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.