RuntimeInfoDO

/**
* @brief DO class: A runtime info.
*/

Primary key: oid: int

schema RuntimeInfoDO {
  @primary oid: int,
  build_version: string,
  extractor_info: string,
  go_os: string,
  go_arch: string
}

RuntimeInfoDO::getGoArch

/**
* @brief gets the go arch of this element.
* @return string
*/
pub fn getGoArch(self: RuntimeInfoDO) -> string;

RuntimeInfoDO::getGoOs

/**
* @brief gets the go os of this element.
* @return string
*/
pub fn getGoOs(self: RuntimeInfoDO) -> string;

RuntimeInfoDO::getExtractorInfo

/**
* @brief gets the extractor info of this element.
* @return string
*/
pub fn getExtractorInfo(self: RuntimeInfoDO) -> string;

RuntimeInfoDO::__all__

Data constraint method.

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

RuntimeInfoDO::getBuildVersion

/**
* @brief gets the build version of this element.
* @return string
*/
pub fn getBuildVersion(self: RuntimeInfoDO) -> string;