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
*/
pub fn getElapsedSeconds(self: CompilationFinishedDO) -> int;

CompilationFinishedDO::__all__

Data constraint method.

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

CompilationFinishedDO::getCpuSeconds

/**
* @brief gets the cpu seconds of this element.
* @return int
*/
pub fn getCpuSeconds(self: CompilationFinishedDO) -> int;