uniprot 0.7.0

Rust data structures and parser for the Uniprot database(s).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Common types for `uniprot` and `uniref`.
pub mod date;
pub mod property;
pub mod sequence;

/// The string type used throughout the library.
#[cfg(feature = "smartstring")]
pub type ShortString = smartstring::alias::String;

/// The string type used throughout the library.
#[cfg(not(feature = "smartstring"))]
pub type ShortString = std::string::String;