pub struct WorkspaceContext {
pub consensus_value: Option<Value>,
pub consensus_count: u64,
pub total_crates: u64,
pub outliers: Vec<Value>,
pub outlier_crates: Vec<String>,
pub all_crates_agree: bool,
}Expand description
Workspace-wide context for consensus-based findings.
Fields§
§consensus_value: Option<Value>Consensus value across all workspace members
consensus_count: u64Number of crates with consensus value
total_crates: u64Total number of crates analyzed
outliers: Vec<Value>Values that differ from consensus
outlier_crates: Vec<String>Crates with outlier values
all_crates_agree: boolWhether all crates agree on the value
Trait Implementations§
Source§impl Clone for WorkspaceContext
impl Clone for WorkspaceContext
Source§fn clone(&self) -> WorkspaceContext
fn clone(&self) -> WorkspaceContext
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 moreSource§impl Debug for WorkspaceContext
impl Debug for WorkspaceContext
Source§impl Default for WorkspaceContext
impl Default for WorkspaceContext
Source§fn default() -> WorkspaceContext
fn default() -> WorkspaceContext
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkspaceContext
impl<'de> Deserialize<'de> for WorkspaceContext
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
Source§impl PartialEq for WorkspaceContext
impl PartialEq for WorkspaceContext
Source§impl Serialize for WorkspaceContext
impl Serialize for WorkspaceContext
impl StructuralPartialEq for WorkspaceContext
Auto Trait Implementations§
impl Freeze for WorkspaceContext
impl RefUnwindSafe for WorkspaceContext
impl Send for WorkspaceContext
impl Sync for WorkspaceContext
impl Unpin for WorkspaceContext
impl UnsafeUnpin for WorkspaceContext
impl UnwindSafe for WorkspaceContext
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