pub struct Scope<'a> { /* private fields */ }
Expand description
Implementations§
Source§impl Scope<'_>
impl Scope<'_>
Sourcepub fn use_state<T>(&mut self, initial_value: T) -> State<T>
pub fn use_state<T>(&mut self, initial_value: T) -> State<T>
Creates a new state. States are persisted between each recomposition of the composable. Each time a state changes, the scope it belongs to is scheduled for recomposition.
Sourcepub fn use_state_with_id<T>(
&mut self,
state_id: TypedStateId<T>,
initial_value: T,
) -> State<T>
pub fn use_state_with_id<T>( &mut self, state_id: TypedStateId<T>, initial_value: T, ) -> State<T>
Creates a new state with a given id. It is useful for cases where you want to reference a state in an external system or a different composable.
Sourcepub fn set_state<T>(&mut self, state: impl GetStateId<T>, value: T)
pub fn set_state<T>(&mut self, state: impl GetStateId<T>, value: T)
Sets the value of the given state. The change happens immediately.
Sourcepub fn set_state_unchanged<T>(&mut self, state: impl GetStateId<T>, value: T)
pub fn set_state_unchanged<T>(&mut self, state: impl GetStateId<T>, value: T)
Sets the value of the given state without triggering a recomposition. The change happens immediately.
Sourcepub fn effect(&mut self, effect: impl Fn(), dependecies: impl Dependency)
pub fn effect(&mut self, effect: impl Fn(), dependecies: impl Dependency)
A callback that is run only if the dependencies have changed.
Sourcepub fn use_mount(&mut self, callback: impl Fn())
pub fn use_mount(&mut self, callback: impl Fn())
Runs a callback when the component is first composed.
Sourcepub fn run_system<M>(&mut self, system: impl IntoSystem<(), (), M>)
pub fn run_system<M>(&mut self, system: impl IntoSystem<(), (), M>)
Runs a system. The system is not cached and is “rebuilt” every time the composable recomposes. It is therefore not the most efficient way to to interact with the ECS world.
Sourcepub fn use_system_once<M>(&mut self, system: impl IntoSystem<(), (), M>)
pub fn use_system_once<M>(&mut self, system: impl IntoSystem<(), (), M>)
Runs a system when the composable is first composed.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Scope<'a>
impl<'a> !RefUnwindSafe for Scope<'a>
impl<'a> Send for Scope<'a>
impl<'a> Sync for Scope<'a>
impl<'a> Unpin for Scope<'a>
impl<'a> !UnwindSafe for Scope<'a>
Blanket Implementations§
Source§impl<T, U> AsBindGroupShaderType<U> for T
impl<T, U> AsBindGroupShaderType<U> for T
Source§fn as_bind_group_shader_type(&self, _images: &RenderAssets<GpuImage>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<GpuImage>) -> U
T
ShaderType
for self
. When used in AsBindGroup
derives, it is safe to assume that all images in self
exist.Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more