pub enum WarningCode {
AxonW002,
}Expand description
Closed catalog of runtime warning codes that can surface on the production SSE wire.
As of 33.x.g there is exactly one wire-body code: AxonW002.
W001 was reserved by Fase 31.e but ships as the
X-Axon-Stream-Available HTTP header (header-level diagnostic),
NOT as a wire-body warning. Future codes (W003+) require an
explicit founder sign-off and a closed-catalog drift gate
update — adding a variant here is not silent.
Variants§
AxonW002
axon-W002 streaming-not-supported — emitted when the
adopter’s flow declared output: Stream<T> but the
production async streaming path could not activate, and
the runtime fell back to the legacy synchronous-burst
delivery. The accompanying FallbackMode tag captures
the specific reason (flow shape unsupported, backend
unknown, etc.).
Wire surface: axon.complete.warnings[*] (D4-compatible
optional array, elided when empty).
Audit surface: replay.runtime_warnings[*] on the
AxonendpointReplayEntry.
Implementations§
Trait Implementations§
Source§impl Clone for WarningCode
impl Clone for WarningCode
Source§fn clone(&self) -> WarningCode
fn clone(&self) -> WarningCode
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreimpl Copy for WarningCode
Source§impl Debug for WarningCode
impl Debug for WarningCode
Source§impl<'de> Deserialize<'de> for WarningCode
impl<'de> Deserialize<'de> for WarningCode
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>,
impl Eq for WarningCode
Source§impl Hash for WarningCode
impl Hash for WarningCode
Source§impl PartialEq for WarningCode
impl PartialEq for WarningCode
Source§fn eq(&self, other: &WarningCode) -> bool
fn eq(&self, other: &WarningCode) -> bool
self and other values to be equal, and is used by ==.Source§impl Serialize for WarningCode
impl Serialize for WarningCode
impl StructuralPartialEq for WarningCode
Auto Trait Implementations§
impl Freeze for WarningCode
impl RefUnwindSafe for WarningCode
impl Send for WarningCode
impl Sync for WarningCode
impl Unpin for WarningCode
impl UnsafeUnpin for WarningCode
impl UnwindSafe for WarningCode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.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>
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>
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