pub struct AppServerCodegenOutput {
pub status: ExitStatus,
pub stdout: String,
pub stderr: String,
pub out_dir: PathBuf,
}Expand description
Captured output from app-server codegen commands.
Fields§
§status: ExitStatusExit status returned by the subcommand.
stdout: StringCaptured stdout (mirrored to the console when mirror_stdout is true).
stderr: StringCaptured stderr (mirrored unless quiet is set).
out_dir: PathBufOutput directory passed to --out.
Trait Implementations§
Source§impl Clone for AppServerCodegenOutput
impl Clone for AppServerCodegenOutput
Source§fn clone(&self) -> AppServerCodegenOutput
fn clone(&self) -> AppServerCodegenOutput
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 AppServerCodegenOutput
impl RefUnwindSafe for AppServerCodegenOutput
impl Send for AppServerCodegenOutput
impl Sync for AppServerCodegenOutput
impl Unpin for AppServerCodegenOutput
impl UnsafeUnpin for AppServerCodegenOutput
impl UnwindSafe for AppServerCodegenOutput
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