pub struct ProcessedBoundaryData {
pub total_crossings: usize,
pub transfer_patterns: TransferPatterns,
pub risk_analysis: BoundaryRiskAnalysis,
pub events: Vec<ProcessedBoundaryEvent>,
pub performance_impact: BoundaryPerformanceImpact,
}
Expand description
Processed boundary event data
Fields§
§total_crossings: usize
Total number of boundary crossings
transfer_patterns: TransferPatterns
Transfer patterns analysis
risk_analysis: BoundaryRiskAnalysis
Risk analysis for boundary operations
events: Vec<ProcessedBoundaryEvent>
Processed boundary events
performance_impact: BoundaryPerformanceImpact
Performance impact analysis
Trait Implementations§
Source§impl Clone for ProcessedBoundaryData
impl Clone for ProcessedBoundaryData
Source§fn clone(&self) -> ProcessedBoundaryData
fn clone(&self) -> ProcessedBoundaryData
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 ProcessedBoundaryData
impl Debug for ProcessedBoundaryData
Auto Trait Implementations§
impl Freeze for ProcessedBoundaryData
impl RefUnwindSafe for ProcessedBoundaryData
impl Send for ProcessedBoundaryData
impl Sync for ProcessedBoundaryData
impl Unpin for ProcessedBoundaryData
impl UnwindSafe for ProcessedBoundaryData
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