Struct jsonnet::EvalMap[][src]

pub struct EvalMap<'a>(_);

Result from "multi" eval methods.

Contains a list of (&str, &str) pairs.

Implementations

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

pub fn iter<'b>(&'b self) -> EvalMapIter<'b, 'a>

Notable traits for EvalMapIter<'a, 'b>

impl<'a, 'b> Iterator for EvalMapIter<'a, 'b> type Item = (&'a str, &'a str);
[src]

Returns an iterator over the contained values.

Trait Implementations

impl<'a, 'b> IntoIterator for &'b EvalMap<'a>[src]

type Item = (&'b str, &'b str)

The type of the elements being iterated over.

type IntoIter = EvalMapIter<'b, 'a>

Which kind of iterator are we turning this into?

Auto Trait Implementations

impl<'a> RefUnwindSafe for EvalMap<'a>[src]

impl<'a> !Send for EvalMap<'a>[src]

impl<'a> !Sync for EvalMap<'a>[src]

impl<'a> Unpin for EvalMap<'a>[src]

impl<'a> UnwindSafe for EvalMap<'a>[src]

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