wgpu_core::indirect_validation::utils

Trait UniqueIndexExt

Source
pub(crate) trait UniqueIndexExt: Iterator<Item = usize> {
    // Provided method
    fn unique<'a>(
        self,
        scratch: &'a mut UniqueIndexScratch,
    ) -> UniqueIndex<'a, Self> 
       where Self: Sized { ... }
}

Provided Methods§

Source

fn unique<'a>( self, scratch: &'a mut UniqueIndexScratch, ) -> UniqueIndex<'a, Self>
where Self: Sized,

Implementors§

Source§

impl<T: Iterator<Item = usize>> UniqueIndexExt for T