do not export inner_ref/store_ref fns
This commit is contained in:
parent
b0d1f5ae82
commit
28a9dc6e80
1 changed files with 2 additions and 2 deletions
|
|
@ -49,12 +49,12 @@ impl EvalState {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
pub fn inner_ref(&self) -> &Rc<RefCell<NonNull<sys::EvalState>>> {
|
||||
pub(crate) fn inner_ref(&self) -> &Rc<RefCell<NonNull<sys::EvalState>>> {
|
||||
&self.inner
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn store_ref(&self) -> &Rc<RefCell<Store>> {
|
||||
pub(crate) fn store_ref(&self) -> &Rc<RefCell<Store>> {
|
||||
&self.store
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue