Enum lovm2::prelude::Iter[][src]

pub enum Iter {
    Create(Box<Expr, Global>),
    CreateRanged(Box<Expr, Global>, Box<Expr, Global>),
    HasNext(Box<Expr, Global>),
    Next(Box<Expr, Global>),
    Reverse(Box<Expr, Global>),
}

Iterator expressions and operations.

Variants

Create(Box<Expr, Global>)
CreateRanged(Box<Expr, Global>, Box<Expr, Global>)
HasNext(Box<Expr, Global>)
Next(Box<Expr, Global>)
Reverse(Box<Expr, Global>)

Implementations

impl Iter[src]

pub fn create<T>(expr: T) -> Iter where
    T: Into<Expr>, 
[src]

pub fn create_ranged<T, U>(from: T, to: U) -> Iter where
    T: Into<Expr>,
    U: Into<Expr>, 
[src]

pub fn has_next<T>(expr: T) -> Iter where
    T: Into<Expr>, 
[src]

pub fn next<T>(expr: T) -> Iter where
    T: Into<Expr>, 
[src]

pub fn reverse<T>(expr: T) -> Iter where
    T: Into<Expr>, 
[src]

Trait Implementations

impl Clone for Iter[src]

impl Debug for Iter[src]

impl From<Iter> for Expr[src]

impl HirLowering for Iter[src]

Auto Trait Implementations

impl !RefUnwindSafe for Iter[src]

impl !Send for Iter[src]

impl !Sync for Iter[src]

impl Unpin for Iter[src]

impl !UnwindSafe for Iter[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> 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.