Struct ArenaItem

Source
pub struct ArenaItem<T, S = SyncStorage> { /* private fields */ }
Expand description

A copyable, stable reference for any value, stored on the arena whose ownership is managed by the reactive ownership tree.

Implementations§

Source§

impl<T, S> ArenaItem<T, S>
where T: 'static, S: Storage<T>,

Source

pub fn new_with_storage(value: T) -> Self

Stores the given value in the arena allocator.

Source§

impl<T> ArenaItem<T>
where T: Send + Sync + 'static,

Source

pub fn new(value: T) -> Self

Stores the given value in the arena allocator.

Source§

impl<T> ArenaItem<T, LocalStorage>
where T: 'static,

Source

pub fn new_local(value: T) -> Self

Stores the given value in the arena allocator.

Source§

impl<T, S: Storage<T>> ArenaItem<T, S>

Source

pub fn try_with_value<U>(&self, fun: impl FnOnce(&T) -> U) -> Option<U>

Applies a function to a reference to the stored value and returns the result, or None if it has already been disposed.

Source

pub fn try_update_value<U>(&self, fun: impl FnOnce(&mut T) -> U) -> Option<U>

Applies a function to a mutable reference to the stored value and returns the result, or None if it has already been disposed.

Source§

impl<T: Clone, S: Storage<T>> ArenaItem<T, S>

Source

pub fn try_get_value(&self) -> Option<T>

Returns a clone of the stored value, or None if it has already been disposed.

Trait Implementations§

Source§

impl<T, S> Clone for ArenaItem<T, S>

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T: Debug, S: Debug> Debug for ArenaItem<T, S>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T, S> Default for ArenaItem<T, S>
where T: Default + 'static, S: Storage<T>,

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<T, S> Dispose for ArenaItem<T, S>

Source§

fn dispose(self)

Disposes of the signal. This: Read more
Source§

impl<T, S> Hash for ArenaItem<T, S>

Source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<T, S: Storage<T>> IntoInner for ArenaItem<T, S>

Source§

type Value = T

The type of the value contained in the signal.
Source§

fn into_inner(self) -> Option<Self::Value>

Returns the inner value if this is the only reference to the signal. Otherwise, returns None and drops this reference. Read more
Source§

impl<T, S> IsDisposed for ArenaItem<T, S>

Source§

fn is_disposed(&self) -> bool

If true, the signal cannot be accessed without a panic.
Source§

impl<T, S> PartialEq for ArenaItem<T, S>

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T, S> Copy for ArenaItem<T, S>

Source§

impl<T, S> Eq for ArenaItem<T, S>

Auto Trait Implementations§

§

impl<T, S> Freeze for ArenaItem<T, S>

§

impl<T, S> RefUnwindSafe for ArenaItem<T, S>

§

impl<T, S> Send for ArenaItem<T, S>

§

impl<T, S> Sync for ArenaItem<T, S>

§

impl<T, S> Unpin for ArenaItem<T, S>

§

impl<T, S> UnwindSafe for ArenaItem<T, S>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> StorageAccess<T> for T

Source§

fn as_borrowed(&self) -> &T

Borrows the value.
Source§

fn into_taken(self) -> T

Takes the value.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more