pub struct ShellOutput {
pub data: Vec<u8>,
pub bell_detected: bool,
}Expand description
Output read from a shell.
Fields§
§data: Vec<u8>§bell_detected: boolTrait Implementations§
Source§impl Clone for ShellOutput
impl Clone for ShellOutput
Source§fn clone(&self) -> ShellOutput
fn clone(&self) -> ShellOutput
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 ShellOutput
impl RefUnwindSafe for ShellOutput
impl Send for ShellOutput
impl Sync for ShellOutput
impl Unpin for ShellOutput
impl UnsafeUnpin for ShellOutput
impl UnwindSafe for ShellOutput
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