pub struct MutRecData {
pub header: ObjectHeader,
pub closures: Vec<RtObject>,
pub index: u32,
}Expand description
Data for a mutual recursive closure group.
Fields§
§header: ObjectHeaderObject header.
closures: Vec<RtObject>The closures in the mutual recursive group.
index: u32Which closure in the group this reference points to.
Trait Implementations§
Source§impl Clone for MutRecData
impl Clone for MutRecData
Source§fn clone(&self) -> MutRecData
fn clone(&self) -> MutRecData
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for MutRecData
impl RefUnwindSafe for MutRecData
impl Send for MutRecData
impl Sync for MutRecData
impl Unpin for MutRecData
impl UnsafeUnpin for MutRecData
impl UnwindSafe for MutRecData
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