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