archive-it-client 0.1.0

Rust client for Archive-It's partner API and WASAPI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod partner;
pub mod public;
pub mod wasapi;

use std::collections::HashMap;

pub type Metadata = HashMap<String, Vec<MetadataEntry>>;

#[derive(Debug, Clone, serde::Deserialize)]
pub struct MetadataEntry {
    pub id: u64,
    pub value: String,
}