hunt ~v1.6.x (2022-05-12T11:27:03.6465239)
Dub
Repo
SerializationMember
hunt
util
Serialize
mixin template
SerializationMember (
T
) {
import
std
.
traits
;
;
import
hunt
.
logging
.
ConsoleLogger
;
;
alias
baseClasses
=
BaseClassesTuple
!
T
;
static if
(
baseClasses.length == 1 && is(baseClasses[0] == Object)
)
ubyte
[]
serialize
();
static if
(!(
baseClasses.length == 1 && is(baseClasses[0] == Object)
))
ubyte
[]
serialize
();
}
Members
Aliases
baseClasses
alias
baseClasses
=
BaseClassesTuple
!
T
Undocumented in source.
Functions
serialize
ubyte
[]
serialize
()
Undocumented in source. Be warned that the author may not have intended to support it.
serialize
ubyte
[]
serialize
()
Undocumented in source. Be warned that the author may not have intended to support it.
Meta
Source
See Implementation
hunt
util
Serialize
aliases
toJSON
toOBJ
classes
UnIgnoreArray
functions
getsize
serialize
toJson
toObject
toTextString
unserialize
manifest constants
IGNORE
mixin templates
SerializationMember