[][src]Struct fst::set::Difference

pub struct Difference<'s>(_);

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

The difference operation is taken with respect to the first stream and the rest of the streams. i.e., All elements in the first stream that do not appear in any other streams.

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

Trait Implementations

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

type Item = &'a [u8]

The type of the item emitted by this stream.

Auto Trait Implementations

impl<'s> !RefUnwindSafe for Difference<'s>

impl<'s> !Send for Difference<'s>

impl<'s> !Sync for Difference<'s>

impl<'s> Unpin for Difference<'s>

impl<'s> !UnwindSafe for Difference<'s>

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.