Struct pleaser::util::RunOptions[][src]

pub struct RunOptions {
Show fields pub name: String, pub original_uid: Uid, pub original_gid: Gid, pub target: String, pub command: String, pub original_command: Vec<String>, pub hostname: String, pub directory: Option<String>, pub groups: HashMap<String, u32>, pub date: NaiveDateTime, pub acl_type: ACLTYPE, pub reason: Option<String>, pub syslog: bool, pub prompt: bool, pub purge_token: bool, pub warm_token: bool, pub new_args: Vec<String>, pub old_umask: Option<Mode>,
}

Fields

name: Stringoriginal_uid: Uidoriginal_gid: Gidtarget: Stringcommand: Stringoriginal_command: Vec<String>hostname: Stringdirectory: Option<String>groups: HashMap<String, u32>date: NaiveDateTimeacl_type: ACLTYPEreason: Option<String>syslog: boolprompt: boolpurge_token: boolwarm_token: boolnew_args: Vec<String>old_umask: Option<Mode>

Implementations

impl RunOptions[src]

pub fn new() -> RunOptions[src]

Trait Implementations

impl Clone for RunOptions[src]

impl Default for RunOptions[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,