Struct fst::set::SymmetricDifference [] [src]

pub struct SymmetricDifference<'s>(_);

A stream of set symmetric difference over multiple streams in lexicographic order.

The 's lifetime parameter refers to the lifetime of the underlying set.

Trait Implementations

impl<'a, 's> Streamer<'a> for SymmetricDifference<'s>
[src]

type Item = &'a [u8]

The type of the item emitted by this stream.

fn next(&'a mut self) -> Option<Self::Item>

Emits the next element in this stream, or None to indicate the stream has been exhausted. Read more