|
@@ -32,7 +32,7 @@ pub(crate) mod innerlude {
|
|
|
pub use crate::nodes::RenderReturn;
|
|
|
pub use crate::nodes::*;
|
|
|
pub use crate::properties::*;
|
|
|
- pub use crate::runtime::{in_runtime, override_runtime, Runtime};
|
|
|
+ pub use crate::runtime::{Runtime, RuntimeGuard};
|
|
|
pub use crate::scheduler::*;
|
|
|
pub use crate::scope_context::*;
|
|
|
pub use crate::scopes::*;
|
|
@@ -87,11 +87,11 @@ pub use crate::innerlude::{
|
|
|
pub mod prelude {
|
|
|
pub use crate::innerlude::{
|
|
|
consume_context, consume_context_from_scope, current_scope_id, fc_to_builder, has_context,
|
|
|
- in_runtime, override_runtime, provide_context, provide_context_to_scope,
|
|
|
- provide_root_context, push_future, remove_future, schedule_update_any, spawn,
|
|
|
- spawn_forever, suspend, throw, AnyValue, Component, Element, Event, EventHandler, Fragment,
|
|
|
- IntoAttributeValue, LazyNodes, Properties, Runtime, Scope, ScopeId, ScopeState, Scoped,
|
|
|
- TaskId, Template, TemplateAttribute, TemplateNode, Throw, VNode, VirtualDom,
|
|
|
+ provide_context, provide_context_to_scope, provide_root_context, push_future,
|
|
|
+ remove_future, schedule_update_any, spawn, spawn_forever, suspend, throw, AnyValue,
|
|
|
+ Component, Element, Event, EventHandler, Fragment, IntoAttributeValue, LazyNodes,
|
|
|
+ Properties, Runtime, RuntimeGuard, Scope, ScopeId, ScopeState, Scoped, TaskId, Template,
|
|
|
+ TemplateAttribute, TemplateNode, Throw, VNode, VirtualDom,
|
|
|
};
|
|
|
}
|
|
|
|