pub enum ToolProgressChunk {
Stdout(Vec<u8>),
Stderr(Vec<u8>),
Status(String),
}Variants§
Trait Implementations§
Source§impl Clone for ToolProgressChunk
impl Clone for ToolProgressChunk
Source§fn clone(&self) -> ToolProgressChunk
fn clone(&self) -> ToolProgressChunk
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 ToolProgressChunk
impl Debug for ToolProgressChunk
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 ToolProgressChunk
impl RefUnwindSafe for ToolProgressChunk
impl Send for ToolProgressChunk
impl Sync for ToolProgressChunk
impl Unpin for ToolProgressChunk
impl UnsafeUnpin for ToolProgressChunk
impl UnwindSafe for ToolProgressChunk
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