pub struct StatusCounts {
pub unparsed: usize,
pub expanded: usize,
pub done: usize,
pub failed: usize,
}Expand description
Per-status node counts for a whole tree.
Fields§
§unparsed: usizeNumber of nodes with status Status::Unparsed.
expanded: usizeNumber of nodes with status Status::Expanded.
done: usizeNumber of nodes with status Status::Done.
failed: usizeNumber of nodes with status Status::Failed.
Implementations§
Trait Implementations§
Source§impl Clone for StatusCounts
impl Clone for StatusCounts
Source§fn clone(&self) -> StatusCounts
fn clone(&self) -> StatusCounts
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 moreimpl Copy for StatusCounts
Source§impl Debug for StatusCounts
impl Debug for StatusCounts
Source§impl Default for StatusCounts
impl Default for StatusCounts
Source§fn default() -> StatusCounts
fn default() -> StatusCounts
Returns the “default value” for a type. Read more
impl Eq for StatusCounts
Source§impl PartialEq for StatusCounts
impl PartialEq for StatusCounts
impl StructuralPartialEq for StatusCounts
Auto Trait Implementations§
impl Freeze for StatusCounts
impl RefUnwindSafe for StatusCounts
impl Send for StatusCounts
impl Sync for StatusCounts
impl Unpin for StatusCounts
impl UnsafeUnpin for StatusCounts
impl UnwindSafe for StatusCounts
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