pub struct Parts<'a, S> {
pub state: &'a mut S,
pub cs_name_interner: &'a mut CsNameInterner,
pub tracer: &'a mut Tracer,
}
Expand description
Mutable references to different parts of the VM.
Fields§
§state: &'a mut S
§cs_name_interner: &'a mut CsNameInterner
§tracer: &'a mut Tracer
Auto Trait Implementations§
impl<'a, S> RefUnwindSafe for Parts<'a, S>where S: RefUnwindSafe,
impl<'a, S> Send for Parts<'a, S>where S: Send,
impl<'a, S> Sync for Parts<'a, S>where S: Sync,
impl<'a, S> Unpin for Parts<'a, S>
impl<'a, S> !UnwindSafe for Parts<'a, S>
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