[][src]Function persy_expimp::export

pub fn export(persy_p: &Persy) -> EIRes<Box<impl Iterator<Item = Info>>>

Export the data from a persy storage with a custom format

Example

use persy::{Persy, Config};
use persy_expimp::export;
use std::vec::Vec;
let persy = Persy::open("file.persy", Config::new())?;
for info in export(&persy)? {
    // Custom logic
}