//!//! This file is part of syscall-rs
//!/// Result type
pubtypeResult<T>=std::result::Result<T, Error>;/// Error type
#[derive(Debug, thiserror::Error)]pubenumError{/// System call error
#[error("System call error: {0}")]
Syscall(#[from]std::io::Error),}