pub struct CompileOutput {
pub rust_code: String,
pub dependencies: Vec<CrateDependency>,
}Expand description
Full compilation output including generated Rust code and extracted dependencies.
Fields§
§rust_code: String§dependencies: Vec<CrateDependency>Trait Implementations§
Auto Trait Implementations§
impl Freeze for CompileOutput
impl RefUnwindSafe for CompileOutput
impl Send for CompileOutput
impl Sync for CompileOutput
impl Unpin for CompileOutput
impl UnwindSafe for CompileOutput
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