pub struct BuildEstimate {
pub node_count: usize,
pub edge_count: usize,
}Expand description
Estimated build sizes for registration UIs.
Fields§
§node_count: usizeDistinct node keys observed in scanned edge rows.
edge_count: usizeEdge row count.
Trait Implementations§
Source§impl Clone for BuildEstimate
impl Clone for BuildEstimate
Source§fn clone(&self) -> BuildEstimate
fn clone(&self) -> BuildEstimate
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 BuildEstimate
Source§impl Debug for BuildEstimate
impl Debug for BuildEstimate
impl Eq for BuildEstimate
Source§impl PartialEq for BuildEstimate
impl PartialEq for BuildEstimate
Source§fn eq(&self, other: &BuildEstimate) -> bool
fn eq(&self, other: &BuildEstimate) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BuildEstimate
Auto Trait Implementations§
impl Freeze for BuildEstimate
impl RefUnwindSafe for BuildEstimate
impl Send for BuildEstimate
impl Sync for BuildEstimate
impl Unpin for BuildEstimate
impl UnsafeUnpin for BuildEstimate
impl UnwindSafe for BuildEstimate
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