Sequence StreamBlock

std/flow/u8::StreamBlock


Inputs

block: Block<u8>

Outputs

↦ stream: Stream<u8>


Stream a block of u8.

The received block is sent as streamed value, then the stream is closed.

graph LR
    T(StreamBlock)
    B["〈🟦〉"] -->|block| T
    
    T -->|stream| O["🟦"]

    style B fill:#ffff,stroke:#ffff
    style O fill:#ffff,stroke:#ffff