made tracker fields public

This commit is contained in:
Nickiel12 2024-09-09 00:36:19 +00:00
parent c5050c8e99
commit 6ac8f0c9a9

View file

@ -5,6 +5,6 @@ use crate::NormalizedBoxCoords;
#[derive(Serialize, Deserialize, Debug, Clone)] #[derive(Serialize, Deserialize, Debug, Clone)]
pub struct TrackingUpdate { pub struct TrackingUpdate {
target_id: Option<u16>, pub target_id: Option<u16>,
boxes: Vec<NormalizedBoxCoords> pub boxes: Vec<NormalizedBoxCoords>
} }