timsrust 0.4.2

A crate to read Bruker timsTOF data
Documentation
1
2
3
4
5
6
7
8
9
10
use super::ReadableSqlHashMap;

#[derive(Clone, Debug, Default, PartialEq)]
pub struct SqlMetadata;

impl ReadableSqlHashMap for SqlMetadata {
    fn get_sql_query() -> String {
        "SELECT Key, Value FROM GlobalMetadata".to_string()
    }
}