pub struct ProjectOutput {
pub files: Vec<(String, String)>,
}Expand description
Output files from a codegen backend.
Fields§
§files: Vec<(String, String)>Files to write: (relative_path, content).
Auto Trait Implementations§
impl Freeze for ProjectOutput
impl RefUnwindSafe for ProjectOutput
impl Send for ProjectOutput
impl Sync for ProjectOutput
impl Unpin for ProjectOutput
impl UnsafeUnpin for ProjectOutput
impl UnwindSafe for ProjectOutput
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