fix: pure

This commit is contained in:
pablo 2025-07-16 19:06:10 +03:00
parent 6b514f6f21
commit 408ee4bd3f
No known key found for this signature in database
GPG Key ID: 78F35FCC60FDC63A

View File

@ -8,16 +8,16 @@ type
AlmostNone
None
SendResult* = enum
PassedToSender = 0
Enqueued = 1
Dropped = 2
DroppedBatchTooLarge = 3
SendResult* {.pure.} = enum
PassedToSender
Enqueued
Dropped
DroppedBatchTooLarge
Priority* = enum
Critical = 0
Normal = 1
Optional = 2
Priority* {.pure.} = enum
Critical
Normal
Optional
Serializable* =
concept x