[][src]Struct broot::verb::ExternalExecution

pub struct ExternalExecution {
    pub exec_pattern: String,
    pub exec_mode: ExternalExecutionMode,
    pub set_working_dir: bool,
}

Definition of how the user input should be interpreted to be executed in an external command.

Fields

exec_pattern: String

the pattern which will result in an executable string when completed with the args. This pattern may include names coming from the invocation pattern (like {my-arg}) and special names automatically filled by broot from the selection and application state:

  • {file}
  • {directory}
  • {parent}
  • {other-panel-file}
  • {other-panel-directory}
  • {other-panel-parent}
exec_mode: ExternalExecutionMode

how the external process must be launched

set_working_dir: bool

whether the working dir of the external process must be set to the current directory

Implementations

impl ExternalExecution[src]

pub fn new(exec_pattern: String, exec_mode: ExternalExecutionMode) -> Self[src]

pub fn with_set_working_dir(self, b: Option<bool>) -> Self[src]

pub fn to_cmd_result(
    &self,
    w: &mut W,
    builder: ExecutionStringBuilder<'_>,
    con: &AppContext
) -> Result<AppStateCmdResult, ProgramError>
[src]

Trait Implementations

impl Clone for ExternalExecution[src]

impl Debug for ExternalExecution[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> Pointable for T

type Init = T

The type for initializers.

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>,