raystack_core 0.5.0

Core functionality and types for SkySpark / Project Haystack
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// A Haystack NA (not available).
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct Na;

impl Na {
    pub fn new() -> Self {
        Self
    }
}

impl std::default::Default for Na {
    fn default() -> Self {
        Self::new()
    }
}