pub struct WccReport {
pub components: Vec<(String, String)>,
pub truncated: bool,
}Expand description
Result of [GraphDb::connected_components].
Fields§
§components: Vec<(String, String)>Each live node and the key of the smallest member of its component (deterministic component identifier). Sorted by (component_id, key).
truncated: booltrue if the time budget fired before all nodes were processed.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for WccReport
impl<'de> Deserialize<'de> for WccReport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for WccReport
impl RefUnwindSafe for WccReport
impl Send for WccReport
impl Sync for WccReport
impl Unpin for WccReport
impl UnsafeUnpin for WccReport
impl UnwindSafe for WccReport
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