pub struct PersistentIters<T> { /* private fields */ }Expand description
Factory for persistent iterators.
Implementations§
Source§impl<T> PersistentIters<T>
impl<T> PersistentIters<T>
Sourcepub fn create<'a, I: IndexIterator>(
&mut self,
name: &str,
index: &'a I,
) -> PersistentIter<'a, T::Base, I> ⓘ
pub fn create<'a, I: IndexIterator>( &mut self, name: &str, index: &'a I, ) -> PersistentIter<'a, T::Base, I> ⓘ
Creates a persistent iterator identified by the name.
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for PersistentIters<T>where
T: Freeze,
impl<T> RefUnwindSafe for PersistentIters<T>where
T: RefUnwindSafe,
impl<T> Send for PersistentIters<T>where
T: Send,
impl<T> Sync for PersistentIters<T>where
T: Sync,
impl<T> Unpin for PersistentIters<T>where
T: Unpin,
impl<T> UnwindSafe for PersistentIters<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more