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

ScopeNodeDO::__all__

Data constraint method.

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

ScopeNodeDO::getNode

/**
* @brief gets the node of this element.
* @return int
*/
pub fn getNode(self: ScopeNodeDO) -> int;