[][src]Struct pwfr::core::ebuild::executor::Frame

pub struct Frame { /* fields omitted */ }

A variable scope.

Methods

impl Frame[src]

pub fn new() -> Frame[src]

pub fn define(&mut self, key: &str)[src]

pub fn set(&mut self, key: &str, value: Value)[src]

pub fn remove(&mut self, key: &str) -> Option<Arc<Variable>>[src]

pub fn get(&self, key: &str) -> Option<Arc<Variable>>[src]

pub fn get_args(&self) -> Vec<Arc<Variable>>[src]

Returns $1, $2, ...

pub fn get_string_args(&self) -> Vec<String>[src]

Returns $1, $2, ...

pub fn set_args(&mut self, args: &[String])[src]

Sets $1, $2, ...

pub fn set_nth_arg(&mut self, index: usize, value: Value)[src]

Sets $<index>.

pub fn remove_nth_arg(&mut self, index: usize) -> Option<Arc<Variable>>[src]

Removes $<index>.

pub fn get_nth_arg(&self, index: usize) -> Option<Arc<Variable>>[src]

Returns $<index>.

pub fn num_args(&self) -> usize[src]

The number of function arguments ($1, ...).

Trait Implementations

impl Debug for Frame[src]

Auto Trait Implementations

impl Send for Frame

impl Sync for Frame

impl Unpin for Frame

impl UnwindSafe for Frame

impl RefUnwindSafe for Frame

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]