pub struct CommandLine { /* private fields */ }
Expand description
Convenient container for commandlines to execute in an crate::env::Environment
.
Implementations§
Source§impl CommandLine
impl CommandLine
Sourcepub fn new<S: Clone + Into<String>>(cmd: &[S]) -> Self
pub fn new<S: Clone + Into<String>>(cmd: &[S]) -> Self
Create a new instance of CommandLine.
The given slice must contain at least one entry, otherwise a runtime error occurs.
Sourcepub fn privileged(self) -> Self
pub fn privileged(self) -> Self
Request privileges for CommandLine
on-the-fly.
Sourcepub fn needs_privileges(&mut self, yesno: bool)
pub fn needs_privileges(&mut self, yesno: bool)
Control whether privileges are needed to execute the command.
Privilege escalation is handled by each respective crate::env::Environment
and on Unix
systems usually refers to some way of executing commands as the root
user.
pub fn get_privileged(&self) -> bool
Sourcepub fn is_interactive(&mut self, yesno: bool)
pub fn is_interactive(&mut self, yesno: bool)
Control whether command execution should be interactive.
pub fn get_interactive(&self) -> bool
Trait Implementations§
Source§impl Clone for CommandLine
impl Clone for CommandLine
Source§fn clone(&self) -> CommandLine
fn clone(&self) -> CommandLine
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CommandLine
impl Debug for CommandLine
Source§impl Default for CommandLine
impl Default for CommandLine
Source§fn default() -> CommandLine
fn default() -> CommandLine
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CommandLine
impl<'de> Deserialize<'de> for CommandLine
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for CommandLine
impl Display for CommandLine
Source§impl PartialEq for CommandLine
impl PartialEq for CommandLine
Source§impl Serialize for CommandLine
impl Serialize for CommandLine
impl StructuralPartialEq for CommandLine
Auto Trait Implementations§
impl Freeze for CommandLine
impl RefUnwindSafe for CommandLine
impl Send for CommandLine
impl Sync for CommandLine
impl Unpin for CommandLine
impl UnwindSafe for CommandLine
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more