pub struct CommandRun {
pub reports: Vec<String>,
pub warnings: Vec<String>,
}Expand description
What a command line did, for the front end to finish and report.
Fields§
§reports: Vec<String>What the commands had to say (set beep? and the like), in
order, for the front end to show as one line.
warnings: Vec<String>Warnings from recompiling the session’s derived state.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CommandRun
impl RefUnwindSafe for CommandRun
impl Send for CommandRun
impl Sync for CommandRun
impl Unpin for CommandRun
impl UnsafeUnpin for CommandRun
impl UnwindSafe for CommandRun
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