CompilationDO
/**
* @brief DO class: A compilation.
*/
Primary key: oid: int
schema CompilationDO {
@primary oid: int,
cwd: string
}
CompilationDO::getCwd
/**
* @brief gets the cwd of this element.
* @return string
*/
- Parameter
self
:CompilationDO
- Return
string
pub fn getCwd(self: CompilationDO) -> string;
CompilationDO::__all__
Data constraint method.
- Parameter
db
:GoDB
- Return
*CompilationDO
pub fn __all__(db: GoDB) -> *CompilationDO;