libhermit-rs 0.6.3

A Rust-based library operating system
Documentation
1
2
3
4
5
6
use crate::syscalls::interfaces::SyscallInterface;

// The generic interface simply uses all default implementations of the
// SyscallInterface trait.
pub struct Generic;
impl SyscallInterface for Generic {}