AsyncFunctionDefStatementDO

/**
* @brief DO class: An async function def statement.
*/

Primary key: element_oid: int

schema AsyncFunctionDefStatementDO {
  @primary element_oid: int,
  name: string
}

AsyncFunctionDefStatementDO::getName

/**
* @brief gets the name of this element.
* @return string
*/
pub fn getName(self: AsyncFunctionDefStatementDO) -> string;

AsyncFunctionDefStatementDO::__all__

Data constraint method.

pub fn __all__(db: PythonDB) -> *AsyncFunctionDefStatementDO;