macro_rules! as_effective {
($ret:ty, $body:block) => { ... };
($body:block) => { ... };
($expr:expr) => { ... };
}Expand description
Run the block/expression as the Effective User. This is thread safe.
macro_rules! as_effective {
($ret:ty, $body:block) => { ... };
($body:block) => { ... };
($expr:expr) => { ... };
}Run the block/expression as the Effective User. This is thread safe.