1 2 3 4 5 6 7 8 9
use crate::endpoint::ContextInternal; use restate_sdk_shared_core::NotificationHandle; // Sealed future trait, used by select statement #[doc(hidden)] pub trait SealedDurableFuture { fn inner_context(&self) -> ContextInternal; fn handle(&self) -> NotificationHandle; }