pub struct ImpactOptions {
pub max_depth: usize,
pub node_limit: usize,
pub edge_limit: usize,
pub confirmed_confidence: f32,
pub offset: usize,
pub limit: usize,
pub summary_only: bool,
pub include_depth_buckets: bool,
}Expand description
Deterministic bounds and presentation controls for impact analysis.
Fields§
§max_depth: usizeMaximum graph path depth.
node_limit: usizeMaximum number of distinct affected nodes.
edge_limit: usizeMaximum number of graph edges examined.
confirmed_confidence: f32Minimum confidence required for a confirmed edge.
offset: usizeZero-based offset over the stable combined impact order.
limit: usizeMaximum number of detailed items returned.
summary_only: boolOmit detailed impact-item lists while retaining aggregates and counts.
include_depth_buckets: boolInclude exact-depth classification buckets.
Trait Implementations§
Source§impl Clone for ImpactOptions
impl Clone for ImpactOptions
Source§fn clone(&self) -> ImpactOptions
fn clone(&self) -> ImpactOptions
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 moreSource§impl Debug for ImpactOptions
impl Debug for ImpactOptions
Source§impl Default for ImpactOptions
impl Default for ImpactOptions
Source§impl<'de> Deserialize<'de> for ImpactOptions
impl<'de> Deserialize<'de> for ImpactOptions
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 JsonSchema for ImpactOptions
impl JsonSchema for ImpactOptions
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for ImpactOptions
impl PartialEq for ImpactOptions
Source§impl Serialize for ImpactOptions
impl Serialize for ImpactOptions
impl StructuralPartialEq for ImpactOptions
Auto Trait Implementations§
impl Freeze for ImpactOptions
impl RefUnwindSafe for ImpactOptions
impl Send for ImpactOptions
impl Sync for ImpactOptions
impl Unpin for ImpactOptions
impl UnsafeUnpin for ImpactOptions
impl UnwindSafe for ImpactOptions
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