pub trait FromSyscallArgU64 {
    // Required method
    fn from_syscall_arg_u64(value: u64) -> Result<Self, SyscallArgError>
       where Self: Sized;
}

Required Methods§

source

fn from_syscall_arg_u64(value: u64) -> Result<Self, SyscallArgError>
where Self: Sized,

Implementations on Foreign Types§

source§

impl FromSyscallArgU64 for i8

source§

impl FromSyscallArgU64 for i16

source§

impl FromSyscallArgU64 for i32

source§

impl FromSyscallArgU64 for i64

source§

impl FromSyscallArgU64 for isize

source§

impl FromSyscallArgU64 for *const u8

source§

impl FromSyscallArgU64 for *const u64

source§

impl FromSyscallArgU64 for *const usize

source§

impl FromSyscallArgU64 for *mut u8

source§

impl FromSyscallArgU64 for *mut u64

source§

impl FromSyscallArgU64 for *mut usize

source§

impl FromSyscallArgU64 for u8

source§

impl FromSyscallArgU64 for u16

source§

impl FromSyscallArgU64 for u32

source§

impl FromSyscallArgU64 for u64

source§

impl FromSyscallArgU64 for usize

Implementors§