[][src]Enum rctl::State

pub enum State {
    Disabled,
    Enabled,
    NotPresent,
    Jailed,
}

Enum representing the state of RACCT/RCTL in the kernel.

Variants

RCTL / RACCT is present in the kernel, but is not enabled via the kern.racct.enable tunable.

RCTL / RACCT is enabled.

RCTL / RACCT is disabled.

The kernel does not support RCTL / RACCT. The following options have to be set in the kernel configuration when compiling the kernel to add support for RCTL / RACCT:

This example is not tested
options         RACCT
options         RCTL

RCTL is not available within a Jail

Methods

impl State
[src]

Check the state of the RCTL / RACCT support.

This queries the kern.racct.enable sysctl. If this fails in any way, (most probably by the sysctl not being present), the kernel is assumed to be compiled without the RCTL / RACCT options.

Example

let state = rctl::State::check();

Return true if the RCTL / RACCT support is Enabled.

Examples

if rctl::State::check().is_enabled() {
    // do things requiring `RCTL` / `RACCT` support.
}

Return true if the kernel has RCTL / RACCT support compiled in.

Examples

if ! rctl::State::check().is_present() {
    println!("The kernel does not have RCTL / RACCT support");
}

Trait Implementations

impl Eq for State
[src]

impl PartialEq<State> for State
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Copy for State
[src]

impl Clone for State
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Hash for State
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Display for State
[src]

Formats the value using the given formatter. Read more

impl Debug for State
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for State

impl Sync for State

Blanket Implementations

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

Performs the conversion.

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

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> ToString for T where
    T: Display + ?Sized
[src]

Converts the given value to a String. Read more

impl<T> From for T
[src]

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more