pub type SyscallResult = Result<u64, SyscallError>;

Aliased Type§

enum SyscallResult {
    Ok(u64),
    Err(SyscallError),
}

Variants§

§1.0.0

Ok(u64)

Contains the success value

§1.0.0

Err(SyscallError)

Contains the error value

Trait Implementations§

source§

impl From<SyscallError> for SyscallResult

source§

fn from(error: SyscallError) -> Self

Converts to this type from the input type.