Struct tmux_interface::commands::global_and_session_environment::set_environment::SetEnvironment[][src]

pub struct SetEnvironment<'a>(pub TmuxCommand<'a>);

Structure for setting or unsetting an environment variable

Manual

tmux ^1.0:

tmux set-environment [-gru] [-t target-session] name [value]
(alias: setenv)

Implementations

impl<'a> SetEnvironment<'a>[src]

pub fn new() -> Self[src]

pub fn global(&mut self) -> &mut Self[src]

[-g] - make change in the global environment

pub fn remove(&mut self) -> &mut Self[src]

[-r] - remove the variable from the environment before starting a new process

pub fn unset(&mut self) -> &mut Self[src]

[-u] - unset a variable

pub fn target_session<S: Into<Cow<'a, str>>>(
    &mut self,
    target_session: S
) -> &mut Self
[src]

[-t target-session] - target-session

pub fn name<S: Into<Cow<'a, str>>>(&mut self, name: S) -> &mut Self[src]

name

pub fn value<S: Into<Cow<'a, str>>>(&mut self, value: S) -> &mut Self[src]

[value] - specify the value

pub fn output(&self) -> Result<TmuxOutput, Error>[src]

Trait Implementations

impl<'a> Clone for SetEnvironment<'a>[src]

impl<'a> Debug for SetEnvironment<'a>[src]

impl<'a> Default for SetEnvironment<'a>[src]

impl<'a> From<&'_ TmuxCommand<'a>> for SetEnvironment<'a>[src]

impl<'a> From<TmuxCommand<'a>> for SetEnvironment<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for SetEnvironment<'a>

impl<'a> Send for SetEnvironment<'a>

impl<'a> Sync for SetEnvironment<'a>

impl<'a> Unpin for SetEnvironment<'a>

impl<'a> UnwindSafe for SetEnvironment<'a>

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.