ctcore 0.2.0

Precision tools for the CTfile family of file formats.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::primitive::FixedCount;

use super::{ChiralFlag, Version};

#[derive(Debug, PartialEq)]
pub struct Counts {
    pub atoms: FixedCount<3>,
    pub bonds: FixedCount<3>,
    pub atom_lists: FixedCount<3>,
    pub chiral: ChiralFlag,
    pub version: Version,
}