Trait conch_runtime::env::SetArgumentsEnvironment [] [src]

pub trait SetArgumentsEnvironment: ArgumentsEnvironment {
    type Args;
    fn set_args(&mut self, new_args: Self::Args) -> Self::Args;
}

An interface for setting shell and function arguments.

Associated Types

A collection of arguments to set.

Required Methods

Changes the environment's arguments to new_args and returns the old arguments.

Implementations on Foreign Types

impl<'a, T: ?Sized + SetArgumentsEnvironment> SetArgumentsEnvironment for &'a mut T
[src]

[src]

Implementors