rust_cutil/cutil/
empty.rs

1
2
3
4
5
6
7
8
9
10
11
use serde::{Deserialize, Serialize};
use utoipa::ToSchema;

#[derive(Debug, Serialize, Deserialize, ToSchema)]
pub struct Empty {}

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