pub struct TelemetryAuthorityBoundary {
pub can_decide_run_state: bool,
pub can_decide_policy_outcome: bool,
pub can_decide_output_delivery: bool,
pub can_decide_side_effect_status: bool,
}Expand description
Holds telemetry authority boundary application-layer state or configuration. Use it with the documented coordinator methods; run, journal, event, provider, or port effects are called out on those methods rather than on construction.
Fields§
§can_decide_run_state: boolBoolean policy/capability flag for whether can decide run state is enabled.
can_decide_policy_outcome: boolBoolean policy/capability flag for whether can decide policy outcome is enabled.
can_decide_output_delivery: boolBoolean policy/capability flag for whether can decide output delivery is enabled.
can_decide_side_effect_status: boolWhether this telemetry surface is allowed to affect side-effect status. Observability-only telemetry should leave this false so telemetry cannot drive run control.
Trait Implementations§
Source§impl Clone for TelemetryAuthorityBoundary
impl Clone for TelemetryAuthorityBoundary
Source§fn clone(&self) -> TelemetryAuthorityBoundary
fn clone(&self) -> TelemetryAuthorityBoundary
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 TelemetryAuthorityBoundary
impl Debug for TelemetryAuthorityBoundary
Source§impl<'de> Deserialize<'de> for TelemetryAuthorityBoundary
impl<'de> Deserialize<'de> for TelemetryAuthorityBoundary
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 TelemetryAuthorityBoundary
impl PartialEq for TelemetryAuthorityBoundary
Source§fn eq(&self, other: &TelemetryAuthorityBoundary) -> bool
fn eq(&self, other: &TelemetryAuthorityBoundary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for TelemetryAuthorityBoundary
impl StructuralPartialEq for TelemetryAuthorityBoundary
Auto Trait Implementations§
impl Freeze for TelemetryAuthorityBoundary
impl RefUnwindSafe for TelemetryAuthorityBoundary
impl Send for TelemetryAuthorityBoundary
impl Sync for TelemetryAuthorityBoundary
impl Unpin for TelemetryAuthorityBoundary
impl UnsafeUnpin for TelemetryAuthorityBoundary
impl UnwindSafe for TelemetryAuthorityBoundary
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