pub struct EntityMetrics {
pub entity_count: usize,
pub max_depth: usize,
pub total_expanded_size: usize,
pub expansion_ratio: f64,
pub external_references: usize,
pub network_urls: usize,
pub processing_time_ms: u64,
}Expand description
Security metrics for entity analysis
Fields§
§entity_count: usizeTotal number of entities analyzed
max_depth: usizeMaximum recursive depth found
total_expanded_size: usizeTotal expansion size
expansion_ratio: f64Expansion ratio (output/input)
external_references: usizeNumber of external references
network_urls: usizeNumber of network URLs found
processing_time_ms: u64Processing time in milliseconds
Trait Implementations§
Source§impl Clone for EntityMetrics
impl Clone for EntityMetrics
Source§fn clone(&self) -> EntityMetrics
fn clone(&self) -> EntityMetrics
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 EntityMetrics
impl Debug for EntityMetrics
Source§impl Default for EntityMetrics
impl Default for EntityMetrics
Source§fn default() -> EntityMetrics
fn default() -> EntityMetrics
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EntityMetrics
impl RefUnwindSafe for EntityMetrics
impl Send for EntityMetrics
impl Sync for EntityMetrics
impl Unpin for EntityMetrics
impl UnwindSafe for EntityMetrics
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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