pub struct FilterSource<S, F> {
    pub source: S,
    pub filter: F,
}
Expand description

Fields

source: Sfilter: F

Trait Implementations

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.