1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//use crate::common::Uuid;

#[derive(Debug)]
pub struct StdPicture {
    pub data: Vec<u8>,
}

#[derive(Debug)]
pub enum GuidAndPicture {
    Empty,
    StdPicture(StdPicture),
}

impl GuidAndPicture {
    pub const EMPTY: Self = GuidAndPicture::Empty;
}