[][src]Struct syscalls::SyscallArgs

pub struct SyscallArgs {
    pub arg0: u64,
    pub arg1: u64,
    pub arg2: u64,
    pub arg3: u64,
    pub arg4: u64,
    pub arg5: u64,
}

The 6 arguments of a syscall, raw untyped version.

TODO: Use a helper function to convert to a structured Syscall+Args enum.

Fields

arg0: u64arg1: u64arg2: u64arg3: u64arg4: u64arg5: u64

Methods

impl SyscallArgs[src]

pub fn new(a0: u64, a1: u64, a2: u64, a3: u64, a4: u64, a5: u64) -> Self[src]

Trait Implementations

impl Clone for SyscallArgs[src]

impl Copy for SyscallArgs[src]

impl Debug for SyscallArgs[src]

impl<'de> Deserialize<'de> for SyscallArgs[src]

impl Eq for SyscallArgs[src]

impl<'_> From<&'_ [u64; 0]> for SyscallArgs[src]

impl<'_> From<&'_ [u64; 1]> for SyscallArgs[src]

impl<'_> From<&'_ [u64; 2]> for SyscallArgs[src]

impl<'_> From<&'_ [u64; 3]> for SyscallArgs[src]

impl<'_> From<&'_ [u64; 4]> for SyscallArgs[src]

impl<'_> From<&'_ [u64; 5]> for SyscallArgs[src]

impl<'_> From<&'_ [u64; 6]> for SyscallArgs[src]

impl PartialEq<SyscallArgs> for SyscallArgs[src]

impl Serialize for SyscallArgs[src]

impl StructuralEq for SyscallArgs[src]

impl StructuralPartialEq for SyscallArgs[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.