serde-flattened 0.1.0

A `csv` and `serde_json` extension for flattening nested structures into flat representations. This enables for example serialization/deserialization of nested data to/from CSV.
Documentation
pub mod flatten_json_value;
pub mod nested_csv;

#[derive(Debug)]
pub struct Flattened<T>(T);

#[derive(Debug)]
pub struct FlattenedRef<'a, T>(&'a T);

impl<T> Flattened<T> {
    pub fn as_ref(&self) -> FlattenedRef<'_, T> {
        FlattenedRef(&self.0)
    }
}

mod serde;

#[cfg(test)]
mod test;