Trait creusot_contracts::std::iter::FromIterator

source ·
pub trait FromIterator<A>: FromIterator<A> {
    // Required method
    fn from_iter_post(prod: Seq<A>, res: Self) -> bool;
}

Required Methods§

source

fn from_iter_post(prod: Seq<A>, res: Self) -> bool

logic

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> FromIterator<T> for Vec<T>