async_tun/
result.rs

1use std::error::Error;
2
3/// Represents an alias for standard library `Result` with error type of `Box<dyn Error>`.
4pub type Result<T> = std::result::Result<T, Box<dyn Error + Sync + Send>>;