atmosphere 0.4.1

A lightweight SQL framework for sustainable database reliant systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use serde::{Deserialize, Serialize};

mod non_nullable;
mod nullable;

#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Clone, Deserialize, Serialize)]
struct Data {
    name: String,
}

impl Data {
    fn new(name: &str) -> Self {
        Self {
            name: name.to_owned(),
        }
    }
}