Struct nix::unistd::Gid [−][src]
pub struct Gid(_);
Expand description
Group identifier
Newtype pattern around gid_t (which is just alias). It prevents bugs caused by accidentally
passing wrong value.
Implementations
Returns Gid of calling process. This is practically a more Rusty alias for getgid.
Returns effective Gid of calling process. This is practically a more Rusty alias for getegid.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Gid
impl UnwindSafe for Gid
Blanket Implementations
Mutably borrows from an owned value. Read more