flexiblemarshal ~master (2016-04-16T06:33:59Z)
Home
Dub
Repo
Demarshaller
libs
marshal
demarshaller
Undocumented in source.
package
class
Demarshaller (
alias
InDemarshalStrategy
StorageStrategy
) {
alias
DemarshalStrategy
=
InDemarshalStrategy
!(
StorageStrategy
)
;
static if
(
__traits(hasMember, StorageStrategy, "SetText")
)
void
SetText
(const(char)[] data);
static if
(!(
__traits(hasMember, StorageStrategy, "SetText")
))
static if
(
__traits(hasMember, StorageStrategy, "SetBuffer")
)
void
SetBuffer
(const(ubyte)[] data);
void
Demarshal
(string name, T val);
void
Demarshal
(T val);
this
();
}
Constructors
this
this
()
Undocumented in source.
Members
Aliases
DemarshalStrategy
alias
DemarshalStrategy
=
InDemarshalStrategy
!(
StorageStrategy
)
Undocumented in source.
Functions
Demarshal
void
Demarshal
(string name, T val)
Undocumented in source. Be warned that the author may not have intended to support it.
Demarshal
void
Demarshal
(T val)
Undocumented in source. Be warned that the author may not have intended to support it.
SetBuffer
void
SetBuffer
(const(ubyte)[] data)
Undocumented in source. Be warned that the author may not have intended to support it.
SetText
void
SetText
(const(char)[] data)
Undocumented in source. Be warned that the author may not have intended to support it.
Meta
Source
See Implementation
libs
marshal
demarshaller
classes
Demarshaller
interfaces
IDemarshalStrategy
mixin templates
DemarshalMixinTemplate