geario ~master (2022-06-04T17:41:52.6758737)
Dub
Repo
SerializationMember
geario
util
Serialize
mixin template
SerializationMember (
T
) {
import
std
.
traits
;
;
import
geario
.
logging
;
;
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
geario
util
Serialize
aliases
toJSON
toOBJ
classes
UnIgnoreArray
functions
Serialize
Unserialize
getsize
toJson
toObject
toTextString
manifest constants
IGNORE
mixin templates
SerializationMember