ScopeNestingDO

/**
* @brief DO class: A scope nesting.
*/

Primary key: oid: int

schema ScopeNestingDO {
  @primary oid: int,
  inner: int,
  outer: int
}

ScopeNestingDO::getOuter

/**
* @brief gets the outer of this element.
* @return int
*/
pub fn getOuter(self: ScopeNestingDO) -> int;

ScopeNestingDO::__all__

Data constraint method.

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

ScopeNestingDO::getInner

/**
* @brief gets the inner of this element.
* @return int
*/
pub fn getInner(self: ScopeNestingDO) -> int;