Skip to main content

gen_core/
path.rs

1use crate::{HashId, Strand};
2
3#[derive(Clone, Debug, Eq, Hash, PartialEq)]
4pub struct PathBlock {
5    pub id: i64,
6    pub node_id: HashId,
7    pub block_sequence: String,
8    pub sequence_start: i64,
9    pub sequence_end: i64,
10    pub path_start: i64,
11    pub path_end: i64,
12    pub strand: Strand,
13}