rudof_generate 0.3.3

RDF data shapes implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::DataGeneratorError;
use crate::output::OutputWriter;

impl OutputWriter {
    pub(super) async fn create_parallel_manifest(&self, _: usize) -> Result<(), DataGeneratorError> {
        Err(DataGeneratorError::OutputWriting(
            "Unable to create manifest in WASM environment".to_string(),
        ))
    }
}