RuntimeInfo
Inherit from RuntimeInfoDO
Primary key: oid: int
schema RuntimeInfo extends RuntimeInfoDO {
@primary oid: int,
build_version: string,
extractor_info: string,
go_os: string,
go_arch: string
}
RuntimeInfo::getExtractorInfo
/**
* @brief gets the extractor info of this element.
* @return string
*/
- Parameter
self
:RuntimeInfo
- Return
string
pub fn getExtractorInfo(self: RuntimeInfo) -> string;
RuntimeInfo::getGoOs
/**
* @brief gets the go os of this element.
* @return string
*/
- Parameter
self
:RuntimeInfo
- Return
string
pub fn getGoOs(self: RuntimeInfo) -> string;
RuntimeInfo::getBuildVersion
/**
* @brief gets the build version of this element.
* @return string
*/
- Parameter
self
:RuntimeInfo
- Return
string
pub fn getBuildVersion(self: RuntimeInfo) -> string;
RuntimeInfo::__all__
Data constraint method.
- Parameter
db
:GoDB
- Return
*RuntimeInfo
pub fn __all__(db: GoDB) -> *RuntimeInfo;
RuntimeInfo::getGoArch
/**
* @brief gets the go arch of this element.
* @return string
*/
- Parameter
self
:RuntimeInfo
- Return
string
pub fn getGoArch(self: RuntimeInfo) -> string;