pub struct RefContainer<T> { /* private fields */ }
Expand description

Allows access to the underlying data persisted with use_ref().

Panics

The rules of borrowing will be enforced at runtime through a RefCell, therefore the methods RefContainer::current(), RefContainer::current_mut(), and RefContainer::set_current() may panic accordingly.

Implementations

Returns a reference to the underlying data.

Panics

Panics if the underlying data is currently mutably borrowed.

Returns a mutable reference to the underlying data.

Panics

Panics if the underlying data is currently borrowed.

Sets the underlying data to the given value.

Panics

Panics if the underlying data is currently borrowed.

Converts a JS value into a RefContainer.

Safety

The following assumptions must hold:

Otherwise this might lead to memory issues.

Trait Implementations

Converts this type into a shared reference of the (usually inferred) input type.

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Converts to this type from the input type.

Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.

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

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.