A crate to interact with [PolicyKit], a toolkit for defining and handling authorizations. It is used for allowing unprivileged processes to speak to privileged processes.
Status: Stable.
```rust,norun use zbus::Connection; use zbuspolkit::policykit1::*;
// Although we use async-std
here, you can use any async runtime of choice.
async fn main() -> Result<(), Box
Ok(())
} ```