#[non_exhaustive]pub enum SpanStatus {
Show 17 variants
Ok,
DeadlineExceeded,
Unauthenticated,
PermissionDenied,
NotFound,
ResourceExhausted,
InvalidArgument,
Unimplemented,
Unavailable,
InternalError,
UnknownError,
Cancelled,
AlreadyExists,
FailedPrecondition,
Aborted,
OutOfRange,
DataLoss,
}
Expand description
The status of a Span.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Ok
The operation completed successfully.
DeadlineExceeded
Deadline expired before operation could complete.
Unauthenticated
401 Unauthorized (actually does mean unauthenticated according to RFC 7235)
PermissionDenied
403 Forbidden
NotFound
404 Not Found. Some requested entity (file or directory) was not found.
ResourceExhausted
429 Too Many Requests
InvalidArgument
Client specified an invalid argument. 4xx.
Unimplemented
501 Not Implemented
503 Service Unavailable
InternalError
Other/generic 5xx.
UnknownError
Unknown. Any non-standard HTTP status code.
Cancelled
The operation was cancelled (typically by the user).
AlreadyExists
Already exists (409)
FailedPrecondition
Operation was rejected because the system is not in a state required for the operation’s
Aborted
The operation was aborted, typically due to a concurrency issue.
OutOfRange
Operation was attempted past the valid range.
DataLoss
Unrecoverable data loss or corruption
Trait Implementations§
Source§impl Clone for SpanStatus
impl Clone for SpanStatus
Source§fn clone(&self) -> SpanStatus
fn clone(&self) -> SpanStatus
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for SpanStatus
impl Debug for SpanStatus
Source§impl<'de> Deserialize<'de> for SpanStatus
impl<'de> Deserialize<'de> for SpanStatus
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SpanStatus, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SpanStatus, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Source§impl Display for SpanStatus
impl Display for SpanStatus
Source§impl FromStr for SpanStatus
impl FromStr for SpanStatus
Source§type Err = ParseStatusError
type Err = ParseStatusError
Source§fn from_str(s: &str) -> Result<SpanStatus, <SpanStatus as FromStr>::Err>
fn from_str(s: &str) -> Result<SpanStatus, <SpanStatus as FromStr>::Err>
s
to return a value of this type. Read moreSource§impl Hash for SpanStatus
impl Hash for SpanStatus
Source§impl PartialEq for SpanStatus
impl PartialEq for SpanStatus
Source§impl Serialize for SpanStatus
impl Serialize for SpanStatus
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
impl Copy for SpanStatus
impl Eq for SpanStatus
impl StructuralPartialEq for SpanStatus
Auto Trait Implementations§
impl Freeze for SpanStatus
impl RefUnwindSafe for SpanStatus
impl Send for SpanStatus
impl Sync for SpanStatus
impl Unpin for SpanStatus
impl UnwindSafe for SpanStatus
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,
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> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ServiceExt for T
impl<T> ServiceExt for T
Source§fn map_response_body<F>(self, f: F) -> MapResponseBody<Self, F>where
Self: Sized,
fn map_response_body<F>(self, f: F) -> MapResponseBody<Self, F>where
Self: Sized,
Source§fn decompression(self) -> Decompression<Self>where
Self: Sized,
fn decompression(self) -> Decompression<Self>where
Self: Sized,
Source§fn trace_for_http(self) -> Trace<Self, SharedClassifier<ServerErrorsAsFailures>>where
Self: Sized,
fn trace_for_http(self) -> Trace<Self, SharedClassifier<ServerErrorsAsFailures>>where
Self: Sized,
Source§fn trace_for_grpc(self) -> Trace<Self, SharedClassifier<GrpcErrorsAsFailures>>where
Self: Sized,
fn trace_for_grpc(self) -> Trace<Self, SharedClassifier<GrpcErrorsAsFailures>>where
Self: Sized,
Source§fn follow_redirects(self) -> FollowRedirect<Self>where
Self: Sized,
fn follow_redirects(self) -> FollowRedirect<Self>where
Self: Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.