do not export inner_ref/store_ref fns

This commit is contained in:
do butterflies cry? 2026-04-14 15:16:17 +10:00
parent b0d1f5ae82
commit 28a9dc6e80
Signed by: cry
GPG key ID: F68745A836CA0412

View file

@ -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
}