pub struct DependencyGraphStats {
pub total_expressions: usize,
pub pending_expressions: usize,
pub computing_expressions: usize,
pub computed_expressions: usize,
pub failed_expressions: usize,
pub total_dependencies: usize,
}Expand description
依赖图统计信息
Fields§
§total_expressions: usize总表达式数
pending_expressions: usize待计算表达式数
computing_expressions: usize正在计算表达式数
computed_expressions: usize已计算表达式数
failed_expressions: usize计算失败表达式数
total_dependencies: usize总依赖关系数
Trait Implementations§
Source§impl Clone for DependencyGraphStats
impl Clone for DependencyGraphStats
Source§fn clone(&self) -> DependencyGraphStats
fn clone(&self) -> DependencyGraphStats
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 moreAuto Trait Implementations§
impl Freeze for DependencyGraphStats
impl RefUnwindSafe for DependencyGraphStats
impl Send for DependencyGraphStats
impl Sync for DependencyGraphStats
impl Unpin for DependencyGraphStats
impl UnwindSafe for DependencyGraphStats
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more