Struct rs::util::c::Wrapped

source · []
#[repr(transparent)]
pub struct Wrapped<T>(*const RefCell<T>);
Expand description

Wraps structures to pass them safely to/from C Since C doesn’t respect borrowing rules, RefCell will enforce them dynamically (only 1 writer/many readers) Rc is implied and will ensure timely dropping

Tuple Fields

0: *const RefCell<T>

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

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.