pub enum BarTree {
Root(Vec<BarTree>),
Group(String, Arc<ProgressBar>, Vec<BarTree>, Option<usize>),
Leaf(String, Arc<ProgressBar>, LeafStatus),
Finished,
}Variants§
Root(Vec<BarTree>)
Group(String, Arc<ProgressBar>, Vec<BarTree>, Option<usize>)
Leaf(String, Arc<ProgressBar>, LeafStatus)
Finished
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BarTree
impl RefUnwindSafe for BarTree
impl Send for BarTree
impl Sync for BarTree
impl Unpin for BarTree
impl UnwindSafe for BarTree
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> ToSinkBuild for T
impl<T> ToSinkBuild for T
§fn iter_to_sink_build(self) -> SendIterBuild<Self>
fn iter_to_sink_build(self) -> SendIterBuild<Self>
§fn stream_to_sink_build(self) -> SendStreamBuild<Self>where
Self: Sized + Stream,
fn stream_to_sink_build(self) -> SendStreamBuild<Self>where
Self: Sized + Stream,
Starts a [
SinkBuild] adaptor chain to send all items from self as a [Stream].