rustwide 0.24.0

Execute your code on the Rust ecosystem.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(unix)]
mod unix;
#[cfg(unix)]
pub(crate) use self::unix::*;

#[cfg(windows)]
mod windows;
#[cfg(windows)]
pub(crate) use self::windows::*;

#[derive(Debug, PartialEq, Eq, Copy, Clone)]
pub(crate) struct CurrentUser {
    pub(crate) user_id: u32,
    pub(crate) group_id: u32,
}