[][src]Struct varisat::cnf::NewVarIter

pub struct NewVarIter<'a, F, V = Var> { /* fields omitted */ }

Iterator over new variables or literals.

Created by the new_var_iter and new_lit_iter methods of ExtendFormula.

Trait Implementations

impl<'a, F, V> Iterator for NewVarIter<'a, F, V> where
    F: ExtendFormula,
    V: From<Var>, 
[src]

type Item = V

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, F, V> RefUnwindSafe for NewVarIter<'a, F, V> where
    F: RefUnwindSafe,
    V: RefUnwindSafe

impl<'a, F, V> Send for NewVarIter<'a, F, V> where
    F: Send,
    V: Send

impl<'a, F, V> Sync for NewVarIter<'a, F, V> where
    F: Sync,
    V: Sync

impl<'a, F, V> Unpin for NewVarIter<'a, F, V> where
    V: Unpin

impl<'a, F, V = Var> !UnwindSafe for NewVarIter<'a, F, V>

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<Reference, Outer, OuterFieldType, Inner> HasPart<Nested<Outer, Inner>> for Reference where
    Inner: Part,
    Outer: Part<PartType = Field<OuterFieldType>>,
    OuterFieldType: HasPart<Inner, RawTarget = OuterFieldType> + PartialRefTarget + ?Sized,
    Reference: HasPart<Outer> + ?Sized
[src]

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

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<I> IteratorRandom for I where
    I: Iterator
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,