From e9938b2f16ba968416cfac8975e149e509dfc4cd Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 24 Jul 2026 00:14:33 +0800 Subject: refactor(core): rename ResourceMarker methods to internal names --- mingling_core/src/asset/chain.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'mingling_core/src/asset/chain.rs') diff --git a/mingling_core/src/asset/chain.rs b/mingling_core/src/asset/chain.rs index 423e218..bd504d0 100644 --- a/mingling_core/src/asset/chain.rs +++ b/mingling_core/src/asset/chain.rs @@ -12,6 +12,7 @@ pub trait Chain { #[cfg(feature = "async")] fn proc(p: Self::Previous) -> impl Future> + Send; + /// Process the previous value and return a future that resolves to a [`ChainProcess`](./enum.ChainProcess.html) #[cfg(not(feature = "async"))] fn proc(p: Self::Previous) -> ChainProcess; } -- cgit