use std::io;
use std::process::Command;
pub struct ResourceLimits;
impl ResourceLimits {
pub fn new(
_cpu_time: Option<u64>,
_file_size: Option<u64>,
_memory_size: Option<u64>,
) -> ResourceLimits {
ResourceLimits {}
}
pub fn set(&self) -> io::Result<()> {
Ok(())
}
pub fn apply(self, command: &mut Command) -> &mut Command {
command
}
}