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.
*/
pub fn getPrintableText(self: RecordDeclarationDO) -> string;

RecordDeclarationDO::__all__

Data constraint method.

pub fn __all__(db: CfamilyDB) -> *RecordDeclarationDO;