Struct rustcn_ui::GlobalMemo
source · pub struct GlobalMemo<T>where
T: 'static,{ /* private fields */ }
Expand description
A signal that can be accessed from anywhere in the application and created in a static
Implementations§
source§impl<T> GlobalMemo<T>where
T: PartialEq + 'static,
impl<T> GlobalMemo<T>where
T: PartialEq + 'static,
sourcepub const fn new(selector: fn() -> T) -> GlobalMemo<T>where
T: PartialEq,
pub const fn new(selector: fn() -> T) -> GlobalMemo<T>where
T: PartialEq,
Create a new global signal
sourcepub fn signal(&self) -> ReadOnlySignal<T>
pub fn signal(&self) -> ReadOnlySignal<T>
Get the signal that backs this global.
sourcepub fn origin_scope(&self) -> ScopeId
pub fn origin_scope(&self) -> ScopeId
Get the scope the signal was created in.
sourcepub fn id(&self) -> GenerationalBoxId
pub fn id(&self) -> GenerationalBoxId
Get the generational id of the signal.
Trait Implementations§
source§impl<T> Debug for GlobalMemo<T>
impl<T> Debug for GlobalMemo<T>
source§impl<T> Deref for GlobalMemo<T>
impl<T> Deref for GlobalMemo<T>
Allow calling a signal with signal() syntax
Currently only limited to copy types, though could probably specialize for string/arc/rc
source§impl<T> Display for GlobalMemo<T>
impl<T> Display for GlobalMemo<T>
source§impl<T> IntoAttributeValue for GlobalMemo<T>
impl<T> IntoAttributeValue for GlobalMemo<T>
source§fn into_value(self) -> AttributeValue
fn into_value(self) -> AttributeValue
Convert into an attribute value
source§impl<T> PartialEq<T> for GlobalMemo<T>where
T: PartialEq + 'static,
impl<T> PartialEq<T> for GlobalMemo<T>where
T: PartialEq + 'static,
source§impl<T> PartialEq for GlobalMemo<T>where
T: PartialEq + 'static,
impl<T> PartialEq for GlobalMemo<T>where
T: PartialEq + 'static,
source§fn eq(&self, other: &GlobalMemo<T>) -> bool
fn eq(&self, other: &GlobalMemo<T>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<T> Readable for GlobalMemo<T>where
T: PartialEq + 'static,
impl<T> Readable for GlobalMemo<T>where
T: PartialEq + 'static,
§type Storage = UnsyncStorage
type Storage = UnsyncStorage
The type of the storage this readable uses.
source§fn try_read(
&self
) -> Result<<<GlobalMemo<T> as Readable>::Storage as AnyStorage>::Ref<<GlobalMemo<T> as Readable>::Target>, BorrowError>
fn try_read( &self ) -> Result<<<GlobalMemo<T> as Readable>::Storage as AnyStorage>::Ref<<GlobalMemo<T> as Readable>::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. If the value has been dropped, this will panic.
source§fn peek(
&self
) -> <<GlobalMemo<T> as Readable>::Storage as AnyStorage>::Ref<<GlobalMemo<T> as Readable>::Target>
fn peek( &self ) -> <<GlobalMemo<T> as Readable>::Storage as AnyStorage>::Ref<<GlobalMemo<T> as Readable>::Target>
Get the current value of the state without subscribing to updates. If the value has been dropped, this will panic.
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.
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.
Auto Trait Implementations§
impl<T> RefUnwindSafe for GlobalMemo<T>
impl<T> Send for GlobalMemo<T>
impl<T> Sync for GlobalMemo<T>
impl<T> Unpin for GlobalMemo<T>
impl<T> UnwindSafe for GlobalMemo<T>
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> 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, 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<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.