svui/nim/svui.nim

15 lines
295 B
Nim
Raw Normal View History

2021-12-10 17:44:39 +00:00
import
std/typetraits, preserves, std/tables
2021-12-10 17:44:39 +00:00
type
Svui*[E] {.preservesRecord: "svui".} = ref object
`attrs`*: Table[string, Preserve[E]]
2021-12-10 17:44:39 +00:00
`svg`*: string
proc `$`*[E](x: Svui[E]): string =
`$`(toPreserve(x, E))
2021-12-10 17:44:39 +00:00
proc encode*[E](x: Svui[E]): seq[byte] =
encode(toPreserve(x, E))