Module signalo_filters::source[][src]

Implementations of trait Source.

Structs

Chain

A source that returns only a specified number of values.

Constant

A source that returns an constant value on each call.

Cycle

A source that repeats an auto-incremented value on each call.

FromIter

A wrapper type for turning iterators into sources.

Increment

A source that returns an auto-incremented value on each call.

IntoIter

A wrapper type for turning iterators into sources.

PadConstant

A source that pads an inner source with a specified number of constant values at the edges.

PadEdge

A source that pads an inner source with a specified number of constant values at the edges.

Repeat

A source that returns a specified number of constant values.

Skip

A source that returns only up to a specified number of values. A source that returns an auto-incremented value on each call.

Take

A source that returns only up to a specified number of values.