nym-config 1.21.2

Config related helpers and functions
Documentation
1
2
3
4
5
6
7
8
9
10
use std::io;
use thiserror::Error;

#[derive(Debug, Error)]
pub enum NymConfigTomlError {
    #[error(transparent)]
    FileIoFailure(#[from] io::Error),
    #[error(transparent)]
    TomlSerializeFailure(#[from] toml::ser::Error),
}