evdi 0.8.0

High-level bindings for evdi
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub use crate::prelude::*;
pub use std::time::Duration;
pub use test_log::test as ltest;
pub use tokio::test as atest;

pub const TIMEOUT: Duration = Duration::from_secs(5);

pub fn handle_fixture() -> Handle {
    DeviceNode::get()
        .unwrap()
        .open()
        .unwrap()
        .connect(&DeviceConfig::sample())
}