/// This type is a wrapper around Rc<RefCell<D>> with some additional functions for creating from
let new_ref = Weak::upgrade(&orig_ref).expect("attempted to upgrade a weak reference that was orphaned");
/// Creates a raw reference, suitable for storage inside of a libcoap C library user/application
/// Creates a raw reference, suitable for storage inside of a libcoap C library user/application
Rc::try_unwrap(self.0).expect("unable to unwrap instance of CoapFfiRcCell as it is still in use"),
pub unsafe fn clone_raw_rc_box(ptr: *mut CoapLendableFfiRcCell<T>) -> CoapLendableFfiRcCell<T> {
pub unsafe fn clone_raw_weak_box(ptr: *mut CoapLendableFfiWeakCell<T>) -> CoapLendableFfiRcCell<T> {
.expect("unable to restore CoapLendableFfiRcCell as the underlying value was already dropped");
pub unsafe fn from_raw_rc_box(ptr: *mut CoapLendableFfiRcCell<T>) -> Box<CoapLendableFfiRcCell<T>> {
pub(crate) struct CoapLendableFfiWeakCell<T: Debug>(Weak<RefCell<T>>, Weak<RefCell<Option<*mut T>>>);
pub unsafe fn from_raw_box(ptr: *mut CoapLendableFfiWeakCell<T>) -> Box<CoapLendableFfiWeakCell<T>> {
/// As long as this token is held, the mutable reference provided to [CoapLendableFfiRcCell] can be
/// elsewhere and panic/abort if this is the case, as this would violate the Rust aliasing rules.
fn new(refer: &'a mut T, container: &Rc<RefCell<Option<*mut T>>>) -> CoapLendableFfiRefLender<'a, T> {