tetrio_api/models/streams/
stream.rs

1use crate::models::packet::Packet;
2use serde::{Deserialize, Serialize};
3
4#[derive(Serialize, Deserialize, Clone, Debug)]
5pub struct Stream {
6    pub records: Vec<serde_json::Value>,
7}
8
9pub type StreamPacket = Packet<Stream>;