csvpp 0.8.0

Compile csv++ source code to a target spreadsheet format
Documentation
1
2
3
4
5
6
7
8
use super::Error;
use std::sync;

impl<T> From<sync::PoisonError<T>> for Error {
    fn from(e: sync::PoisonError<T>) -> Self {
        Error::ModuleLoadError(format!("Runtime lock error while loading modules: {e}"))
    }
}