[][src]Struct language_reporting::Join

pub struct Join<U, Iterator> where
    Iterator: IntoIterator<Item = U>, 
{ pub iterator: Iterator, pub joiner: &'static str, }

Equivalent to Each(), but inserts a joiner between two adjacent elements.

Example

struct Point(i32, i32);

let items = vec![Point(10, 20), Point(5, 10), Point(6, 42)];

let document = Document::with(Join(
    (&items, ", "),
    |item, doc| doc.add("Point(").add(item.0).add(",").add(item.1).add(")")
));

assert_eq!(document.to_string()?, "Point(10,20), Point(5,10), Point(6,42)");

Fields

iterator: Iteratorjoiner: &'static str

Trait Implementations

impl<U, I> From<(I, &'static str)> for Join<U, I> where
    I: IntoIterator<Item = U>, 
[src]

impl<'item, U, Iterator> IterBlockComponent for Join<U, Iterator> where
    Iterator: IntoIterator<Item = U>, 
[src]

type Item = U

Auto Trait Implementations

impl<U, Iterator> Send for Join<U, Iterator> where
    Iterator: Send

impl<U, Iterator> Sync for Join<U, Iterator> where
    Iterator: Sync

impl<U, Iterator> Unpin for Join<U, Iterator> where
    Iterator: Unpin

impl<U, Iterator> UnwindSafe for Join<U, Iterator> where
    Iterator: UnwindSafe

impl<U, Iterator> RefUnwindSafe for Join<U, Iterator> where
    Iterator: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]