diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-07-24 00:14:33 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-07-24 00:14:33 +0800 |
| commit | e9938b2f16ba968416cfac8975e149e509dfc4cd (patch) | |
| tree | 53514f9ae9feeef18b553c0962ed1bd09d5c5cee /mingling_core/src/asset/chain.rs | |
| parent | 0c304c30ae0ed03f7060733770009b677773289f (diff) | |
refactor(core): rename ResourceMarker methods to internal names
Diffstat (limited to 'mingling_core/src/asset/chain.rs')
| -rw-r--r-- | mingling_core/src/asset/chain.rs | 1 |
1 files changed, 1 insertions, 0 deletions
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<G> { #[cfg(feature = "async")] fn proc(p: Self::Previous) -> impl Future<Output = ChainProcess<G>> + Send; + /// Process the previous value and return a future that resolves to a [`ChainProcess<G>`](./enum.ChainProcess.html) #[cfg(not(feature = "async"))] fn proc(p: Self::Previous) -> ChainProcess<G>; } |
