pub struct ApplyPolicyOwnedArgs<'a> {
pub edge_idx: usize,
pub policy: &'a EdgePolicyKind,
pub payload: CorrelatedPayload,
pub queues: &'a Arc<Vec<EdgeStorage>>,
pub warnings_seen: &'a Arc<Mutex<HashSet<String>>>,
pub telem: &'a mut ExecutionTelemetry,
pub warning_label: Option<String>,
pub backpressure: BackpressureStrategy,
}Fields§
§edge_idx: usize§policy: &'a EdgePolicyKind§payload: CorrelatedPayload§queues: &'a Arc<Vec<EdgeStorage>>§warnings_seen: &'a Arc<Mutex<HashSet<String>>>§telem: &'a mut ExecutionTelemetry§warning_label: Option<String>§backpressure: BackpressureStrategyAuto Trait Implementations§
impl<'a> Freeze for ApplyPolicyOwnedArgs<'a>
impl<'a> !RefUnwindSafe for ApplyPolicyOwnedArgs<'a>
impl<'a> Send for ApplyPolicyOwnedArgs<'a>
impl<'a> Sync for ApplyPolicyOwnedArgs<'a>
impl<'a> Unpin for ApplyPolicyOwnedArgs<'a>
impl<'a> !UnwindSafe for ApplyPolicyOwnedArgs<'a>
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> 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