aboutsummaryrefslogtreecommitdiff
path: root/src/structs/ser.rs
blob: a3fe29176fde503d661d3ec4e7bcd9f7fee6a5f8 (plain)
1
2
3
4
5
6
use crate::ArchiveError;
use serde::{ser, Serialize};

pub struct ArchiveSerializer {
    bin: Vec<u8>,
}