Struct sophia_api::triple::stream::FilterMapSource[][src]

pub struct FilterMapSource<S, F> {
    pub source: S,
    pub filter_map: F,
}
Expand description

Fields

source: Sfilter_map: F

Trait Implementations

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

The type of errors produced by this source.

Determine the type of Quads that this quad source yields. (see streaming_mode Read more

Call f for at least one quad from this quad source, if any. Read more

Returns the bounds on the remaining length of the quad source. Read more

Call f for all quads from this quad source.

Call f for at least one quad from this quad source, if any. Read more

Call f for all quads from this quad source.

Creates a quad source which uses a closure to determine if a quad should be yielded.

Creates a quad source that both filters and maps.

Takes a closure and creates quad source which yield the result of that closure for each quad.

Collect these quads into a new dataset.

Insert all quads from this source into the given MutableDataset. Read more

The type of errors produced by this source.

Determine the type of Triples that this triple source yields. (see streaming_mode) Read more

Call f for at least one triple from this triple source, if any. Read more

Returns the bounds on the remaining length of the triple source. Read more

Call f for all triples from this triple source.

Call f for at least one triple from this triple source, if any. Read more

Call f for all triples from this triple source.

Creates a triple source which uses a closure to determine if a triple should be yielded.

Creates a triple source that both filters and maps.

Takes a closure and creates triple source which yield the result of that closure for each triple.

Collect these triples into a new graph.

Insert all triples from this source into the given MutableGraph. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.