pub struct ComponentTranslation {
pub component: Component,
pub trampolines: PrimaryMap<TrampolineIndex, Trampoline>,
}
Expand description
Metadata as a result of compiling a component.
Fields§
§component: Component
Serializable information that will be emitted into the final artifact.
trampolines: PrimaryMap<TrampolineIndex, Trampoline>
Metadata about required trampolines and what they’re supposed to do.
Auto Trait Implementations§
impl Freeze for ComponentTranslation
impl RefUnwindSafe for ComponentTranslation
impl Send for ComponentTranslation
impl Sync for ComponentTranslation
impl Unpin for ComponentTranslation
impl UnwindSafe for ComponentTranslation
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