kdeconnect-proto 0.1.0

A pure Rust modular implementation of the KDE Connect protocol
Documentation
1
2
3
4
//! Define a custom Result type.

/// A Result using [`core::error::Error`] as error type.
pub type Result<T> = core::result::Result<T, Box<dyn core::error::Error + Send + Sync>>;