[][src]Struct capctl::caps::CapState

pub struct CapState {
    pub effective: CapSet,
    pub permitted: CapSet,
    pub inheritable: CapSet,
}

Represents the permitted, effective, and inheritable capability sets of a thread.

Fields

effective: CapSetpermitted: CapSetinheritable: CapSet

Implementations

impl CapState[src]

pub fn empty() -> Self[src]

Construct an empty CapState object.

pub fn get_current() -> Result<Self>[src]

Get the capability state of the current thread.

This is equivalent to CapState::get_for_pid(0).

pub fn get_for_pid(pid: pid_t) -> Result<Self>[src]

Get the capability state of the process (or thread) with the given PID (or TID).

pub fn set_current(&self) -> Result<()>[src]

Set the current capability state to the state represented by this object.

Trait Implementations

impl Clone for CapState[src]

impl Copy for CapState[src]

impl Debug for CapState[src]

impl Eq for CapState[src]

impl Hash for CapState[src]

impl PartialEq<CapState> for CapState[src]

impl StructuralEq for CapState[src]

impl StructuralPartialEq for CapState[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.