Struct mprober_lib::process::ProcessFilter[][src]

pub struct ProcessFilter<'a> {
    pub pid_filter: Option<u32>,
    pub uid_filter: Option<u32>,
    pub gid_filter: Option<u32>,
    pub program_filter: Option<&'a Regex>,
    pub tty_filter: Option<&'a Regex>,
}

Fields

pid_filter: Option<u32>uid_filter: Option<u32>gid_filter: Option<u32>program_filter: Option<&'a Regex>tty_filter: Option<&'a Regex>

Trait Implementations

impl<'a> Clone for ProcessFilter<'a>[src]

impl<'a> Debug for ProcessFilter<'a>[src]

impl<'a> Default for ProcessFilter<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for ProcessFilter<'a>

impl<'a> Send for ProcessFilter<'a>

impl<'a> Sync for ProcessFilter<'a>

impl<'a> Unpin for ProcessFilter<'a>

impl<'a> UnwindSafe for ProcessFilter<'a>

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> Same<T> for T

type Output = T

Should always be Self

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.