Struct jsonnet::EvalList[][src]

pub struct EvalList<'a>(_);

Result from "stream" eval methods.

Contains a list of &str.

Implementations

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

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

Notable traits for EvalListIter<'a, 'b>

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

Returns an iterator over the contained values.

Trait Implementations

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

type Item = &'b str

The type of the elements being iterated over.

type IntoIter = EvalListIter<'b, 'a>

Which kind of iterator are we turning this into?

Auto Trait Implementations

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

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

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

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

impl<'a> UnwindSafe for EvalList<'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.