co-didcomm 0.8.0

COKIT fork of didcomm-rs — DIDComm messaging v2 implementation with modern crypto and WASM support.
Documentation
1
2
3
4
5
6
7
//! Result type
//!
//! The `Result` type is an alias to `std::result::Result` with
//! `co_didcomm::Error` as error.

/// [`Result`] type. See module level [documentation](self).
pub type Result<T> = std::result::Result<T, crate::Error>;