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§
§impl<T, R> Global<T, R>where
T: Clone + 'static + InitializeFromFunction<R>,
impl<T, R> Global<T, R>where
T: Clone + 'static + InitializeFromFunction<R>,
pub const fn with_name(
constructor: fn() -> R,
key: &'static str,
) -> Global<T, R>
pub const fn with_name( 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.
pub const fn with_location(
constructor: fn() -> R,
file: &'static str,
line: u32,
column: u32,
index: usize,
) -> Global<T, R>
pub const fn with_location( constructor: fn() -> R, file: &'static str, line: u32, column: u32, index: usize, ) -> 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.
pub 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.
pub fn origin_scope(&self) -> ScopeId
pub fn origin_scope(&self) -> ScopeId
Get the scope the signal was created in.
Trait Implementations§
§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
§impl<T, R> Readable for Global<T, R>
impl<T, R> Readable for Global<T, R>
§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>
§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>
§fn read(&self) -> <Self::Storage as AnyStorage>::Ref<'_, Self::Target>
fn read(&self) -> <Self::Storage as AnyStorage>::Ref<'_, Self::Target>
§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>
§fn read_unchecked(
&self,
) -> <Self::Storage as AnyStorage>::Ref<'static, Self::Target>
fn read_unchecked( &self, ) -> <Self::Storage as AnyStorage>::Ref<'static, Self::Target>
§fn peek(&self) -> <Self::Storage as AnyStorage>::Ref<'_, Self::Target>
fn peek(&self) -> <Self::Storage as AnyStorage>::Ref<'_, Self::Target>
§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>
§fn peek_unchecked(
&self,
) -> <Self::Storage as AnyStorage>::Ref<'static, Self::Target>
fn peek_unchecked( &self, ) -> <Self::Storage as AnyStorage>::Ref<'static, Self::Target>
§fn with<O>(&self, f: impl FnOnce(&Self::Target) -> O) -> O
fn with<O>(&self, f: impl FnOnce(&Self::Target) -> O) -> O
§impl<T, R> Writable for Global<T, R>
impl<T, R> Writable for Global<T, R>
§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>
§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>>
§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,
§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>
§fn write(&mut self) -> Self::Mut<'_, Self::Target>
fn write(&mut self) -> Self::Mut<'_, Self::Target>
§fn try_write(&mut self) -> Result<Self::Mut<'_, Self::Target>, BorrowMutError>
fn try_write(&mut self) -> Result<Self::Mut<'_, Self::Target>, BorrowMutError>
§fn write_unchecked(&self) -> Self::Mut<'static, Self::Target>
fn write_unchecked(&self) -> Self::Mut<'static, Self::Target>
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§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
.§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
.§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.§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.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> InitializeFromFunction<T> for T
impl<T> InitializeFromFunction<T> for T
§fn initialize_from_function(f: fn() -> T) -> T
fn initialize_from_function(f: fn() -> T) -> T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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