titanrt 0.7.0

Typed reactive runtime for real-time systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::connector::features::{
    grpc::stream::GrpcCommand, http::stream::actions::HttpAction, shared::actions::StreamActionRaw,
    websocket::stream::WebSocketCommand,
};

#[derive(Debug)]
pub enum CompositeAction {
    Http(StreamActionRaw<HttpAction>),
    Grpc(StreamActionRaw<GrpcCommand>),
    Ws(StreamActionRaw<WebSocketCommand>),
}