rs::receiver::cType Alias State
Source pub type State = Wrapped<Threaded<Application>>;
struct State(*const RefCell<Threaded<Application>>);
Implementations
Extracts the reference to the data.
It may cause problems if attempted in more than one place
Creates a new Rc reference to the same data.
Use for accessing the underlying data as a reference.
Trait Implementations
Performs copy-assignment from
source
.
Read moreSource§ToOwned won’t work here
because it’s really difficult to implement Borrow on Wrapped
with the Rc<RefCell<>> chain on the way to the data