shuttle-common 0.44.0

Common library for the shuttle platform (https://www.shuttle.rs/)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use serde::{Deserialize, Serialize};
use uuid::Uuid;

#[derive(Deserialize, Serialize)]
pub struct LoadRequest {
    pub id: Uuid,
}

#[derive(Deserialize, Serialize)]
pub struct LoadResponse {
    pub builds_count: usize,
    pub has_capacity: bool,
}