pub struct Global<T, R = T> { /* private fields */ }
Expand description
A lazy value that is created once per application and can be accessed from anywhere in that application
Implementations§
source§impl<T, R> Global<T, R>where
T: Clone + 'static + InitializeFromFunction<R>,
impl<T, R> Global<T, R>where
T: Clone + 'static + InitializeFromFunction<R>,
sourcepub const fn with_key(constructor: fn() -> R, key: &'static str) -> Global<T, R>
pub const fn with_key(constructor: fn() -> R, key: &'static str) -> Global<T, R>
Create this global signal with a specific key. This is useful for ensuring that the signal is unique across the application and accessible from outside the application too.
sourcepub fn resolve(&self) -> T
pub fn resolve(&self) -> T
Resolve the global value. This will try to get the existing value from the current virtual dom, and if it doesn’t exist, it will create a new one.
sourcepub fn origin_scope(&self) -> ScopeId
pub fn origin_scope(&self) -> ScopeId
Get the scope the signal was created in.
Trait Implementations§
source§impl<T, R> Deref for Global<T, R>
impl<T, R> Deref for Global<T, R>
Allow calling a signal with signal() syntax
Currently only limited to copy types, though could probably specialize for string/arc/rc
source§impl<T, R> Readable for Global<T, R>
impl<T, R> Readable for Global<T, R>
source§fn try_read_unchecked(
&self,
) -> Result<<<Global<T, R> as Readable>::Storage as AnyStorage>::Ref<'static, <Global<T, R> as Readable>::Target>, BorrowError>
fn try_read_unchecked( &self, ) -> Result<<<Global<T, R> as Readable>::Storage as AnyStorage>::Ref<'static, <Global<T, R> as Readable>::Target>, BorrowError>
Try to get a reference to the value without checking the lifetime. This will subscribe the current scope to the signal. Read more
source§fn try_peek_unchecked(
&self,
) -> Result<<<Global<T, R> as Readable>::Storage as AnyStorage>::Ref<'static, <Global<T, R> as Readable>::Target>, BorrowError>
fn try_peek_unchecked( &self, ) -> Result<<<Global<T, R> as Readable>::Storage as AnyStorage>::Ref<'static, <Global<T, R> as Readable>::Target>, BorrowError>
Try to peek the current value of the signal without subscribing to updates. If the value has
been dropped, this will return an error. Read more
source§fn read(&self) -> <Self::Storage as AnyStorage>::Ref<'_, Self::Target>
fn read(&self) -> <Self::Storage as AnyStorage>::Ref<'_, Self::Target>
Get the current value of the state. If this is a signal, this will subscribe the current scope to the signal.
If the value has been dropped, this will panic. Calling this on a Signal is the same as
using the signal() syntax to read and subscribe to its value
source§fn try_read(
&self,
) -> Result<<Self::Storage as AnyStorage>::Ref<'_, Self::Target>, BorrowError>
fn try_read( &self, ) -> Result<<Self::Storage as AnyStorage>::Ref<'_, Self::Target>, BorrowError>
Try to get the current value of the state. If this is a signal, this will subscribe the current scope to the signal.
source§fn read_unchecked(
&self,
) -> <Self::Storage as AnyStorage>::Ref<'static, Self::Target>
fn read_unchecked( &self, ) -> <Self::Storage as AnyStorage>::Ref<'static, Self::Target>
Get a reference to the value without checking the lifetime. This will subscribe the current scope to the signal. Read more
source§fn peek(&self) -> <Self::Storage as AnyStorage>::Ref<'_, Self::Target>
fn peek(&self) -> <Self::Storage as AnyStorage>::Ref<'_, Self::Target>
Get the current value of the state without subscribing to updates. If the value has been dropped, this will panic. Read more
source§fn try_peek(
&self,
) -> Result<<Self::Storage as AnyStorage>::Ref<'_, Self::Target>, BorrowError>
fn try_peek( &self, ) -> Result<<Self::Storage as AnyStorage>::Ref<'_, Self::Target>, BorrowError>
Try to peek the current value of the signal without subscribing to updates. If the value has
been dropped, this will return an error.
source§fn peek_unchecked(
&self,
) -> <Self::Storage as AnyStorage>::Ref<'static, Self::Target>
fn peek_unchecked( &self, ) -> <Self::Storage as AnyStorage>::Ref<'static, Self::Target>
Get the current value of the signal without checking the lifetime. Unlike read, this will not subscribe the current scope to the signal which can cause parts of your UI to not update. Read more
source§fn with<O>(&self, f: impl FnOnce(&Self::Target) -> O) -> O
fn with<O>(&self, f: impl FnOnce(&Self::Target) -> O) -> O
Run a function with a reference to the value. If the value has been dropped, this will panic.
source§impl<T, R> Writable for Global<T, R>
impl<T, R> Writable for Global<T, R>
source§type Mut<'a, Read: 'static + ?Sized> = <T as Writable>::Mut<'a, Read>
type Mut<'a, Read: 'static + ?Sized> = <T as Writable>::Mut<'a, Read>
The type of the reference.
source§fn map_mut<I, U, F>(
ref_: <Global<T, R> as Writable>::Mut<'_, I>,
f: F,
) -> <Global<T, R> as Writable>::Mut<'_, U>
fn map_mut<I, U, F>( ref_: <Global<T, R> as Writable>::Mut<'_, I>, f: F, ) -> <Global<T, R> as Writable>::Mut<'_, U>
Map the reference to a new type.
source§fn try_map_mut<I, U, F>(
ref_: <Global<T, R> as Writable>::Mut<'_, I>,
f: F,
) -> Option<<Global<T, R> as Writable>::Mut<'_, U>>
fn try_map_mut<I, U, F>( ref_: <Global<T, R> as Writable>::Mut<'_, I>, f: F, ) -> Option<<Global<T, R> as Writable>::Mut<'_, U>>
Try to map the reference to a new type.
source§fn downcast_lifetime_mut<'a, 'b, Read>(
mut_: <Global<T, R> as Writable>::Mut<'a, Read>,
) -> <Global<T, R> as Writable>::Mut<'b, Read>where
'a: 'b,
Read: 'static + ?Sized,
fn downcast_lifetime_mut<'a, 'b, Read>(
mut_: <Global<T, R> as Writable>::Mut<'a, Read>,
) -> <Global<T, R> as Writable>::Mut<'b, Read>where
'a: 'b,
Read: 'static + ?Sized,
Downcast a mutable reference in a RefMut to a more specific lifetime Read more
source§fn try_write_unchecked(
&self,
) -> Result<<Global<T, R> as Writable>::Mut<'static, <Global<T, R> as Readable>::Target>, BorrowMutError>
fn try_write_unchecked( &self, ) -> Result<<Global<T, R> as Writable>::Mut<'static, <Global<T, R> as Readable>::Target>, BorrowMutError>
Try to get a mutable reference to the value without checking the lifetime. This will update any subscribers. Read more
source§fn write(&mut self) -> Self::Mut<'_, Self::Target>
fn write(&mut self) -> Self::Mut<'_, Self::Target>
Get a mutable reference to the value. If the value has been dropped, this will panic.
source§fn try_write(&mut self) -> Result<Self::Mut<'_, Self::Target>, BorrowMutError>
fn try_write(&mut self) -> Result<Self::Mut<'_, Self::Target>, BorrowMutError>
Try to get a mutable reference to the value.
source§fn write_unchecked(&self) -> Self::Mut<'static, Self::Target>
fn write_unchecked(&self) -> Self::Mut<'static, Self::Target>
Get a mutable reference to the value without checking the lifetime. This will update any subscribers. Read more
Auto Trait Implementations§
impl<T, R> Freeze for Global<T, R>
impl<T, R> RefUnwindSafe for Global<T, R>
impl<T, R> Send for Global<T, R>
impl<T, R> Sync for Global<T, R>
impl<T, R> Unpin for Global<T, R>
impl<T, R> UnwindSafe for Global<T, R>
Blanket Implementations§
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
Mutably borrows from an owned value. Read more
source§impl<T> InitializeFromFunction<T> for T
impl<T> InitializeFromFunction<T> for T
source§fn initialize_from_function(f: fn() -> T) -> T
fn initialize_from_function(f: fn() -> T) -> T
Create an instance of this type from an initialization function
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, R> ReadableOptionExt<T> for R
impl<T, R> ReadableOptionExt<T> for R
source§impl<T, E, R> ReadableResultExt<T, E> for R
impl<T, E, R> ReadableResultExt<T, E> for R
source§impl<T, R> ReadableVecExt<T> for R
impl<T, R> ReadableVecExt<T> for R
source§fn first(&self) -> Option<<Self::Storage as AnyStorage>::Ref<'_, T>>
fn first(&self) -> Option<<Self::Storage as AnyStorage>::Ref<'_, T>>
Get the first element of the inner vector.
source§fn last(&self) -> Option<<Self::Storage as AnyStorage>::Ref<'_, T>>
fn last(&self) -> Option<<Self::Storage as AnyStorage>::Ref<'_, T>>
Get the last element of the inner vector.
source§impl<Ret> SpawnIfAsync<(), Ret> for Ret
impl<Ret> SpawnIfAsync<(), Ret> for Ret
source§impl<T, O> SuperFrom<T> for Owhere
O: From<T>,
impl<T, O> SuperFrom<T> for Owhere
O: From<T>,
source§fn super_from(input: T) -> O
fn super_from(input: T) -> O
Convert from a type to another type.
source§impl<T, O, M> SuperInto<O, M> for Twhere
O: SuperFrom<T, M>,
impl<T, O, M> SuperInto<O, M> for Twhere
O: SuperFrom<T, M>,
source§fn super_into(self) -> O
fn super_into(self) -> O
Convert from a type to another type.
source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
source§impl<T, W> WritableOptionExt<T> for W
impl<T, W> WritableOptionExt<T> for W
source§fn get_or_insert(&mut self, default: T) -> Self::Mut<'_, T>
fn get_or_insert(&mut self, default: T) -> Self::Mut<'_, T>
Gets the value out of the Option, or inserts the given value if the Option is empty.
source§fn get_or_insert_with(
&mut self,
default: impl FnOnce() -> T,
) -> Self::Mut<'_, T>
fn get_or_insert_with( &mut self, default: impl FnOnce() -> T, ) -> Self::Mut<'_, T>
Gets the value out of the Option, or inserts the value returned by the given function if the Option is empty.
source§impl<T, W> WritableVecExt<T> for W
impl<T, W> WritableVecExt<T> for W
source§fn extend(&mut self, iter: impl IntoIterator<Item = T>)
fn extend(&mut self, iter: impl IntoIterator<Item = T>)
Extends the vector with the given iterator.
source§fn swap_remove(&mut self, index: usize) -> T
fn swap_remove(&mut self, index: usize) -> T
Swaps two values in the vector.
source§fn retain(&mut self, f: impl FnMut(&T) -> bool)
fn retain(&mut self, f: impl FnMut(&T) -> bool)
Retains only the values that match the given predicate.