RecordDeclarationDO
/**
* @brief DO class: Represents a struct/union/class.
*/
Primary key: oid: int
schema RecordDeclarationDO {
@primary oid: int,
printable_text: string
}
RecordDeclarationDO::getPrintableText
/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
- Parameter
self
:RecordDeclarationDO
- Return
string
pub fn getPrintableText(self: RecordDeclarationDO) -> string;
RecordDeclarationDO::__all__
Data constraint method.
- Parameter
db
:CfamilyDB
- Return
*RecordDeclarationDO
pub fn __all__(db: CfamilyDB) -> *RecordDeclarationDO;