Struct SplitPaths
struct SplitPaths<'a> { ... }
An iterator that splits an environment variable into paths according to platform-specific conventions.
The iterator element type is PathBuf.
This structure is created by env::split_paths(). See its
documentation for more.
Implementations
impl Debug for SplitPaths<'_>
fn fmt(self: &Self, f: &mut fmt::Formatter<'_>) -> fmt::Result
impl<'a> Freeze for SplitPaths<'a>
impl<'a> Iterator for SplitPaths<'a>
fn next(self: &mut Self) -> Option<PathBuf>fn size_hint(self: &Self) -> (usize, Option<usize>)
impl<'a> RefUnwindSafe for SplitPaths<'a>
impl<'a> Send for SplitPaths<'a>
impl<'a> Sync for SplitPaths<'a>
impl<'a> Unpin for SplitPaths<'a>
impl<'a> UnwindSafe for SplitPaths<'a>
impl<I> IntoIterator for SplitPaths<'a>
fn into_iter(self: Self) -> I
impl<T> Any for SplitPaths<'a>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for SplitPaths<'a>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for SplitPaths<'a>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> From for SplitPaths<'a>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into for SplitPaths<'a>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for SplitPaths<'a>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for SplitPaths<'a>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>