From 00d3df315b7837b5095d9bb4f1965e79045e27b8 Mon Sep 17 00:00:00 2001 From: Victoria Fischer Date: Tue, 24 Mar 2026 12:41:41 +0100 Subject: [PATCH] simdata: add an error code for not enough space while writing --- src/simdata.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/simdata.rs b/src/simdata.rs index acf841c..efae3bb 100644 --- a/src/simdata.rs +++ b/src/simdata.rs @@ -20,7 +20,8 @@ pub enum SimDataError { EndOfStream, UnsupportedStreamType(ExtMeta), EventHeaderMissing, - PartitionNotFound + PartitionNotFound, + NotEnoughSpace } impl From for SimDataError {