pub struct Interactive {
pub stdin: bool,
pub stdout: bool,
pub stderr: bool,
}
Expand description
A struct that describes if any parts of STDIO are interactive
Fields§
§stdin: bool
Is STDIN interactive?
stdout: bool
Is STDOUT interactive?
stderr: bool
Is STDERR interactive?
Trait Implementations§
Source§impl Clone for Interactive
impl Clone for Interactive
Source§fn clone(&self) -> Interactive
fn clone(&self) -> Interactive
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 moreSource§impl Debug for Interactive
impl Debug for Interactive
Source§impl<'de> Deserialize<'de> for Interactive
impl<'de> Deserialize<'de> for Interactive
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for Interactive
impl PartialEq for Interactive
Source§impl Serialize for Interactive
impl Serialize for Interactive
impl StructuralPartialEq for Interactive
Auto Trait Implementations§
impl Freeze for Interactive
impl RefUnwindSafe for Interactive
impl Send for Interactive
impl Sync for Interactive
impl Unpin for Interactive
impl UnwindSafe for Interactive
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