[][src]Struct fst::raw::Union

pub struct Union<'f> { /* fields omitted */ }

A stream of set union over multiple fst streams in lexicographic order.

The 'f lifetime parameter refers to the lifetime of the underlying map.

Trait Implementations

impl<'a, 'f> Streamer<'a> for Union<'f>[src]

type Item = (&'a [u8], &'a [IndexedValue])

The type of the item emitted by this stream.

Auto Trait Implementations

impl<'f> !RefUnwindSafe for Union<'f>

impl<'f> !Send for Union<'f>

impl<'f> !Sync for Union<'f>

impl<'f> Unpin for Union<'f>

impl<'f> !UnwindSafe for Union<'f>

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.