simdata: add an error code for not enough space while writing

This commit is contained in:
2026-03-24 12:41:41 +01:00
parent 73e0773942
commit 00d3df315b

View File

@@ -20,7 +20,8 @@ pub enum SimDataError<E> {
EndOfStream,
UnsupportedStreamType(ExtMeta),
EventHeaderMissing,
PartitionNotFound
PartitionNotFound,
NotEnoughSpace
}
impl<E> From<E> for SimDataError<E> {