Skip to main content

PathIter

Trait PathIter 

Source
pub trait PathIter<'resolver>: Iterator<Item = &'resolver str> { }
Expand description

An iterator over the path parts.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<'resolver, T> PathIter<'resolver> for T
where T: Iterator<Item = &'resolver str>,