pub enum BodyDefect {
NotAnObject,
UpstreamErrorObject(String),
NoTurn,
}Expand description
Why the body cannot be parsed into a turn.
NotAnObject is a JSON array or scalar where the contract requires an
object, UpstreamErrorObject is a provider error delivered with a success
status, and NoTurn is an object with neither content nor usage.
Display is the operator-facing sentence; the raw body excerpt is attached
by the caller, which is the layer that still holds the bytes.
Variants§
Trait Implementations§
Source§impl Clone for BodyDefect
impl Clone for BodyDefect
Source§fn clone(&self) -> BodyDefect
fn clone(&self) -> BodyDefect
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 BodyDefect
impl Debug for BodyDefect
Source§impl Display for BodyDefect
impl Display for BodyDefect
impl Eq for BodyDefect
Source§impl PartialEq for BodyDefect
impl PartialEq for BodyDefect
impl StructuralPartialEq for BodyDefect
Auto Trait Implementations§
impl Freeze for BodyDefect
impl RefUnwindSafe for BodyDefect
impl Send for BodyDefect
impl Sync for BodyDefect
impl Unpin for BodyDefect
impl UnsafeUnpin for BodyDefect
impl UnwindSafe for BodyDefect
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<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
Compare self to
key and return true if they are equal.impl<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
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