sos-sync 0.17.0

Sync types and traits for the Save Our Secrets SDK
Documentation
1
2
3
4
5
6
7
8
9
use thiserror::Error;

/// Errors generated by the library.
#[derive(Debug, Error)]
pub enum Error {
    /// Errors generated by the core library.
    #[error(transparent)]
    Core(#[from] sos_core::Error),
}