Struct term_transcript::Interaction
source · pub struct Interaction<Out: TermOutput = Captured> { /* private fields */ }
Expand description
One-time interaction with the terminal.
Implementations§
source§impl Interaction
impl Interaction
sourcepub fn new(input: impl Into<UserInput>, output: impl Into<String>) -> Self
pub fn new(input: impl Into<UserInput>, output: impl Into<String>) -> Self
Creates a new interaction.
sourcepub fn with_exit_status(self, exit_status: ExitStatus) -> Self
pub fn with_exit_status(self, exit_status: ExitStatus) -> Self
Assigns an exit status to this interaction.
source§impl<Out: TermOutput> Interaction<Out>
impl<Out: TermOutput> Interaction<Out>
sourcepub fn exit_status(&self) -> Option<ExitStatus>
pub fn exit_status(&self) -> Option<ExitStatus>
Returns exit status of the interaction, if available.
Trait Implementations§
source§impl<Out: Clone + TermOutput> Clone for Interaction<Out>
impl<Out: Clone + TermOutput> Clone for Interaction<Out>
source§fn clone(&self) -> Interaction<Out>
fn clone(&self) -> Interaction<Out>
Returns a copy 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 more