pub enum Sep {
Retain,
Yield,
Split,
Conjoin,
}Expand description
Variants§
Retain
Keep the char in the iterator.
Yield
Yield the char with the output.
Split
Discard the char.
Conjoin
Yield the char but keep it in the iterator.
Trait Implementations§
impl Copy for Sep
impl Eq for Sep
impl StructuralPartialEq for Sep
Auto Trait Implementations§
impl Freeze for Sep
impl RefUnwindSafe for Sep
impl Send for Sep
impl Sync for Sep
impl Unpin for Sep
impl UnwindSafe for Sep
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