[][src]Trait rust_3d::IsSkipEmptyStringProducer

pub trait IsSkipEmptyStringProducer<'a>: Iterator<Item = &'a str> where
    Self: Sized
{ fn skip_empty_string(self) -> SkipEmptyString<'a, Self>

Important traits for SkipEmptyString<'a, I>

impl<'a, I> Iterator for SkipEmptyString<'a, I> where
    I: Iterator<Item = &'a str>, 
type Item = &'a str;
; }

Utility trait to easily spawn the SkipEmptyString iterator

Required methods

fn skip_empty_string(self) -> SkipEmptyString<'a, Self>

Important traits for SkipEmptyString<'a, I>

impl<'a, I> Iterator for SkipEmptyString<'a, I> where
    I: Iterator<Item = &'a str>, 
type Item = &'a str;

Loading content...

Implementations on Foreign Types

impl<'a, '_> IsSkipEmptyStringProducer<'a> for Split<'a, &'_ str>[src]

Loading content...

Implementors

Loading content...