vmix-tcp 0.2.2

TCP API client for vMix
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod acts;
pub mod commands;
pub mod traits;
pub mod vmix;

// Re-export commonly used types
pub use acts::ActivatorsData;
pub use commands::{
    InputNumber, RecvCommand, SUBSCRIBECommand, SendCommand, TallyData, TallyResponse,
};
pub use traits::VmixTcpApiClient;
pub use vmix::VmixApi;

// Re-export vmix-core for convenience
pub use vmix_core;