viiper_client/
lib.rs

1// This file is auto-generated by VIIPER codegen. DO NOT EDIT.
2
3pub mod error;
4pub mod wire;
5pub mod types;
6pub mod client;
7
8#[cfg(feature = "async")]
9pub mod async_client;
10
11pub mod devices;
12
13pub use error::{ViiperError, ProblemJson};
14pub use wire::{DeviceInput, DeviceOutput};
15pub use types::*;
16pub use client::{ViiperClient, DeviceStream};
17
18#[cfg(feature = "async")]
19pub use async_client::{AsyncViiperClient, AsyncDeviceStream};