Trait half_edge_mesh::iterators::ToPtrVec[][src]

pub trait ToPtrVec<T> where
    Self: Iterator<Item = Ptr<T>>, 
{ fn to_ptr_vec(self) -> Vec<Rc<RefCell<T>>>; }

A trait for converting an interator of Ptr into a vector of Rc<RefCell<T>> TODO: rename this, since it's not exactly a vec of "Ptr", and that's potentially confusing

Required Methods

Implementors