TypeParamDeclsDO

/**
* @brief DO class: A type param decls.
*/

Primary key: oid: int

schema TypeParamDeclsDO {
  @primary oid: int,
  parent: int,
  index: int
}

TypeParamDeclsDO::getIndex

/**
* @brief gets the index of this element.
* @return int
*/
pub fn getIndex(self: TypeParamDeclsDO) -> int;

TypeParamDeclsDO::__all__

Data constraint method.

pub fn __all__(db: GoDB) -> *TypeParamDeclsDO;

TypeParamDeclsDO::getParent

/**
* @brief gets the parent of this element.
* @return int
*/
pub fn getParent(self: TypeParamDeclsDO) -> int;