CompilationFinishedDO
/**
* @brief DO class: A compilation finished.
*/
Primary key: oid: int
schema CompilationFinishedDO {
@primary oid: int,
cpu_seconds: int,
elapsed_seconds: int
}
CompilationFinishedDO::getElapsedSeconds
/**
* @brief gets the elapsed seconds of this element.
* @return int
*/
- Parameter
self
:CompilationFinishedDO
- Return
int
pub fn getElapsedSeconds(self: CompilationFinishedDO) -> int;
CompilationFinishedDO::__all__
Data constraint method.
- Parameter
db
:GoDB
- Return
*CompilationFinishedDO
pub fn __all__(db: GoDB) -> *CompilationFinishedDO;
CompilationFinishedDO::getCpuSeconds
/**
* @brief gets the cpu seconds of this element.
* @return int
*/
- Parameter
self
:CompilationFinishedDO
- Return
int
pub fn getCpuSeconds(self: CompilationFinishedDO) -> int;