pub enum SteamingOutput {
Stdout(Vec<u8>),
Stderr(Vec<u8>),
ExitStatus(u32),
}
Variants§
Trait Implementations§
Source§impl Clone for SteamingOutput
impl Clone for SteamingOutput
Source§fn clone(&self) -> SteamingOutput
fn clone(&self) -> SteamingOutput
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 moreSource§impl Debug for SteamingOutput
impl Debug for SteamingOutput
Source§impl PartialEq for SteamingOutput
impl PartialEq for SteamingOutput
impl Eq for SteamingOutput
impl StructuralPartialEq for SteamingOutput
Auto Trait Implementations§
impl Freeze for SteamingOutput
impl RefUnwindSafe for SteamingOutput
impl Send for SteamingOutput
impl Sync for SteamingOutput
impl Unpin for SteamingOutput
impl UnwindSafe for SteamingOutput
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