noodles_fasta/repository/adapters/
empty.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
use std::io;

use crate::{repository::Adapter, Record};

/// An empty adapter.
///
/// This adapter always returns `None`.
#[derive(Default)]
pub struct Empty;

impl Empty {
    /// Creates an empty adapter.
    pub fn new() -> Self {
        Self
    }
}

impl Adapter for Empty {
    fn get(&mut self, _: &[u8]) -> Option<io::Result<Record>> {
        None
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_get() {
        let mut adapter = Empty::new();
        assert!(adapter.get(b"sq0").is_none());
    }
}