f3-rs/src/identities.rs

11 lines
472 B
Rust

use serde::{Deserialize, Serialize};
/// Pairs of identities mapping one forge to another. The first element is the id in the source
/// forge, the second element is the id in the destination forge.Pairs of identities mapping one
/// forge to another. The first element is the id in the source forge, the second element is the id
/// in the destination forge.
#[derive(Clone, Debug, Serialize, Deserialize, Default)]
pub struct Identities {
pub pairs: Vec<usize>,
}