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