CommonLibrary/Output/
mod.rs

1//! # Output Service
2//!
3//! This module defines the abstract contract for the Output Channel service.
4//! It includes the `OutputChannelManager` trait and the `ActionEffect`
5//! constructors for every output channel operation.
6
7// --- Trait Definition ---
8pub mod OutputChannelManager;
9
10// --- Effect Constructors ---
11pub mod AppendToOutputChannel;
12
13pub mod ClearOutputChannel;
14
15pub mod CloseOutputChannelView;
16
17pub mod DisposeOutputChannel;
18
19pub mod RegisterOutputChannel;
20
21pub mod ReplaceOutputChannelContent;
22
23pub mod RevealOutputChannel;