Type Alias Reason
pub type Reason = ReasonView<'static>;Available on crate features
quic and std only.Expand description
Diagnostic reason with owned or static backing storage.
Aliased Type§
pub enum Reason {
Static(&'static str),
Text(&'static str),
Owned(Box<str>),
Bytes(Cow<'static, [u8]>),
}