atomio 0.1.0

Crate to parse chemical formula
Documentation
1
2
3
4
5
6
7
8
9
///! Structure to represent the element
#[derive(Debug)]
pub struct Element {
    /// Number of elements
    pub count: u32,

    /// Chemical symbol of the element
    pub symbol: String
}