rs::submission::cType Alias Submission
Source pub type Submission = Wrapped<Submission>;
struct Submission(*const RefCell<Submission>);
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