pub enum ProgressChunk {
Stdout(Vec<u8>),
Stderr(Vec<u8>),
Status(String),
}Variants§
Trait Implementations§
Source§impl Clone for ProgressChunk
impl Clone for ProgressChunk
Source§fn clone(&self) -> ProgressChunk
fn clone(&self) -> ProgressChunk
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProgressChunk
impl Debug for ProgressChunk
Source§impl From<ToolProgressChunk> for ProgressChunk
impl From<ToolProgressChunk> for ProgressChunk
Source§fn from(c: ToolProgressChunk) -> Self
fn from(c: ToolProgressChunk) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ProgressChunk
impl RefUnwindSafe for ProgressChunk
impl Send for ProgressChunk
impl Sync for ProgressChunk
impl Unpin for ProgressChunk
impl UnsafeUnpin for ProgressChunk
impl UnwindSafe for ProgressChunk
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