pub struct RFnStack {
pub size: Cell<usize>,
pub stack: [Option<Rc<RFn>>; 64],
}Fields§
§size: Cell<usize>§stack: [Option<Rc<RFn>>; 64]Implementations§
Auto Trait Implementations§
impl !Freeze for RFnStack
impl !RefUnwindSafe for RFnStack
impl !Send for RFnStack
impl !Sync for RFnStack
impl Unpin for RFnStack
impl UnsafeUnpin for RFnStack
impl !UnwindSafe for RFnStack
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more