bdb 0.0.1

Efficient APIs to parse from and export to file formats commonly used in biology, for both proteomics and genetics workflows.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Shared aliases.

use std::error::Error as StdError;

/// General buffer type.
pub type BufferType = Vec<u8>;

/// General error type.
pub type ErrorType = Box<StdError>;

/// General result type.
pub type ResultType<T> = Result<T, ErrorType>;