Struct signalo_pipes::source::UnitPipe [] [src]

pub struct UnitPipe<T> { /* fields omitted */ }

A UnitPipe is a simple container wrapping a Source

╠════════════
║ ╭────────╮
║ │ Source │
║ ╰────────╯
╠════════════
└─┬────────┘
  └ UnitPipe

Methods

impl<T> UnitPipe<T>
[src]

[src]

Trait Implementations

impl<T: Default> Default for UnitPipe<T>
[src]

[src]

Returns the "default value" for a type. Read more

impl<T: Clone> Clone for UnitPipe<T>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: Debug> Debug for UnitPipe<T>
[src]

[src]

Formats the value using the given formatter. Read more

impl<T> From<T> for UnitPipe<T> where
    T: Source
[src]

[src]

Performs the conversion.

impl<T, Rhs> BitOr<Rhs> for UnitPipe<T>
[src]

The resulting type after applying the | operator.

[src]

Performs the | operation.

impl<T> Source for UnitPipe<T> where
    T: Source
[src]

The source's output type.

[src]

Produces the next value in the stream of values.

impl<T> Filter<()> for UnitPipe<T> where
    T: Source
[src]

The filter's output type.

[src]

Processes the input value, returning a corresponding output.

Auto Trait Implementations

impl<T> Send for UnitPipe<T> where
    T: Send

impl<T> Sync for UnitPipe<T> where
    T: Sync