Struct pleaser::RunOptions

source ·
pub struct RunOptions {
Show 25 fields pub name: String, pub original_uid: Uid, pub original_gid: Gid, pub target: String, pub target_group: Option<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>, pub old_envs: Option<HashMap<String, String>>, pub allow_env_list: Option<Vec<String>>, pub env_options: Option<EnvOptions>, pub cloned_args: Option<Vec<String>>, pub located_bin: HashMap<String, Option<String>>, pub resume: Option<bool>,
}

Fields§

§name: String§original_uid: Uid§original_gid: Gid§target: String§target_group: Option<String>§command: String§original_command: Vec<String>§hostname: String§directory: Option<String>§groups: HashMap<String, u32>§date: NaiveDateTime§acl_type: Acltype§reason: Option<String>§syslog: bool§prompt: bool§purge_token: bool§warm_token: bool§new_args: Vec<String>§old_umask: Option<Mode>§old_envs: Option<HashMap<String, String>>§allow_env_list: Option<Vec<String>>§env_options: Option<EnvOptions>§cloned_args: Option<Vec<String>>§located_bin: HashMap<String, Option<String>>§resume: Option<bool>

Implementations§

Trait Implementations§

source§

impl Clone for RunOptions

source§

fn clone(&self) -> RunOptions

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for RunOptions

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for RunOptions

source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

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

source§

fn vzip(self) -> V