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
*/
- Parameter
self
:AsyncFunctionDefStatementDO
- Return
string
pub fn getName(self: AsyncFunctionDefStatementDO) -> string;
AsyncFunctionDefStatementDO::__all__
Data constraint method.
- Parameter
db
:PythonDB
- Return
*AsyncFunctionDefStatementDO
pub fn __all__(db: PythonDB) -> *AsyncFunctionDefStatementDO;