mambo.serialization.Events

Members

Structs

Event
struct Event(alias m)

This struct represents an event.

Templates

OnDeserialized
template OnDeserialized(alias method)

This event is triggered after the struct/class, this template has been mixed into, has been completely deserialized, including all the fields.

OnDeserializing
template OnDeserializing(alias method)

This event is triggered after the struct/class (that this template has been mixed into) has been deserialized, but before any fields have been deserialized.

OnSerialized
template OnSerialized(alias method)

This event is triggered after the struct/class (that this template has been mixed into) has been completely serialized, including all the fields.

OnSerializing
template OnSerializing(alias method)

This event is triggered after the struct/class (that this template has been mixed into) has been serialized, but before any fields have been serialized.

Variables

onDeserializedField
auto onDeserializedField;
Undocumented in source.
onDeserializingField
auto onDeserializingField;
Undocumented in source.
onSerializedField
auto onSerializedField;
Undocumented in source.
onSerializingField
auto onSerializingField;
Undocumented in source.

Meta

Authors

Jacob Carlborg

Version

Initial created: Jan 26, 2010