[−][src]Struct heim_process::Command
Process command line.
Methods
impl Command[src]
pub fn to_os_string(&self) -> OsString[src]
Create an OsString containing the process command line.
Spaces are used as a delimiters in the returned OsString.
Notes
This method will always allocate memory on all OSes.
pub fn into_os_string(self) -> OsString[src]
Consumes self and returns the underline process command line.
Spaces are used as a delimiters in the returned OsString.
Notes
This method might allocate on some OSes, depending on the implementation.
Trait Implementations
impl<'a> IntoIterator for &'a Command[src]
type Item = &'a OsStr
The type of the elements being iterated over.
type IntoIter = CommandIter<'a>
Which kind of iterator are we turning this into?
fn into_iter(self) -> Self::IntoIter[src]
impl Debug for Command[src]
Auto Trait Implementations
impl Send for Command
impl Unpin for Command
impl Sync for Command
impl UnwindSafe for Command
impl RefUnwindSafe for Command
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Same<T> for T
type Output = T
Should always be Self