__anonymousmixin HiBONRecord!(q{
this(string description, string[] comments=null ) pure nothrow {
this.description = description;
this.comments = comments;
}
this(T)(T prop) pure nothrow {
description = prop.description;
comments = prop.comments;
}
})