[][src]Struct privdrop::PrivDrop

pub struct PrivDrop { /* fields omitted */ }

PrivDrop structure

Example

This example is not tested
privdrop::PrivDrop::default()
    .chroot("/var/empty")
    .user("nobody")
    .apply()
    .unwrap_or_else(|e| { panic!("Failed to drop privileges: {}", e) });

Methods

impl PrivDrop[src]

pub fn chroot<T: AsRef<Path>>(self, path: T) -> Self[src]

chroot() to a specific directory before switching to a non-root user

pub fn user<S: AsRef<OsStr>>(self, user: S) -> Self[src]

Set the name of a user to switch to

pub fn group<S: AsRef<OsStr>>(self, group: S) -> Self[src]

Set a group name to switch to, if different from the primary group of the user

pub fn apply(self) -> Result<(), PrivDropError>[src]

Apply the changes

Trait Implementations

impl Clone for PrivDrop[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for PrivDrop[src]

impl Debug for PrivDrop[src]

Auto Trait Implementations

impl Send for PrivDrop

impl Sync for PrivDrop

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]