iqkms-types 0.0.1

Type definitions which can be shared between client and server components of iqkms
Documentation
//! Error types.

/// Error type.
// TODO(tarcieri): convert this into an enum?
#[derive(Clone, Debug)]
pub struct Error;

/// Result type with the `iqkms-types` crate's [`Error`] type.
pub type Result<T> = std::result::Result<T, Error>;