#[repr(u8)]
pub enum SpanStatus {
Show 17 variants Ok = 0, Cancelled = 1, Unknown = 2, InvalidArgument = 3, DeadlineExceeded = 4, NotFound = 5, AlreadyExists = 6, PermissionDenied = 7, ResourceExhausted = 8, FailedPrecondition = 9, Aborted = 10, OutOfRange = 11, Unimplemented = 12, InternalError = 13, Unavailable = 14, DataLoss = 15, Unauthenticated = 16,
}
Expand description

Variants§

§

Ok = 0

The operation completed successfully.

HTTP status 100..299 + successful redirects from the 3xx range.

§

Cancelled = 1

The operation was cancelled (typically by the user).

§

Unknown = 2

Unknown. Any non-standard HTTP status code.

“We do not know whether the transaction failed or succeeded”

§

InvalidArgument = 3

Client specified an invalid argument. 4xx.

Note that this differs from FailedPrecondition. InvalidArgument indicates arguments that are problematic regardless of the state of the system.

§

DeadlineExceeded = 4

Deadline expired before operation could complete.

For operations that change the state of the system, this error may be returned even if the operation has been completed successfully.

HTTP redirect loops and 504 Gateway Timeout

§

NotFound = 5

404 Not Found. Some requested entity (file or directory) was not found.

§

AlreadyExists = 6

Already exists (409)

Some entity that we attempted to create already exists.

§

PermissionDenied = 7

403 Forbidden

The caller does not have permission to execute the specified operation.

§

ResourceExhausted = 8

429 Too Many Requests

Some resource has been exhausted, perhaps a per-user quota or perhaps the entire file system is out of space.

§

FailedPrecondition = 9

Operation was rejected because the system is not in a state required for the operation’s execution

§

Aborted = 10

The operation was aborted, typically due to a concurrency issue.

§

OutOfRange = 11

Operation was attempted past the valid range.

§

Unimplemented = 12

501 Not Implemented

Operation is not implemented or not enabled.

§

InternalError = 13

Other/generic 5xx.

§

Unavailable = 14

503 Service Unavailable

§

DataLoss = 15

Unrecoverable data loss or corruption

§

Unauthenticated = 16

401 Unauthorized (actually does mean unauthenticated according to RFC 7235)

Prefer PermissionDenied if a user is logged in.

Implementations§

source§

impl SpanStatus

source

pub fn as_str(&self) -> &'static str

Returns the string representation of the status.

Trait Implementations§

source§

impl AsRef<str> for SpanStatus

source§

fn as_ref(&self) -> &str

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Clone for SpanStatus

source§

fn clone(&self) -> SpanStatus

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for SpanStatus

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Display for SpanStatus

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Empty for SpanStatus

source§

fn is_empty(&self) -> bool

Returns whether this value is empty.
source§

fn is_deep_empty(&self) -> bool

Returns whether this value is empty or all of its descendants are empty. Read more
source§

impl FromStr for SpanStatus

§

type Err = ParseSpanStatusError

The associated error which can be returned from parsing.
source§

fn from_str(string: &str) -> Result<SpanStatus, <SpanStatus as FromStr>::Err>

Parses a string s to return a value of this type. Read more
source§

impl FromValue for SpanStatus

source§

fn from_value(value: Annotated<Value>) -> Annotated<SpanStatus>

Creates a meta structure from an annotated boxed value.
source§

impl IntoValue for SpanStatus

source§

fn into_value(self) -> Value

Boxes the meta structure back into a value.
source§

fn serialize_payload<S>( &self, s: S, _behavior: SkipSerialization ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>

Efficiently serializes the payload directly.
source§

fn extract_child_meta(&self) -> BTreeMap<String, MetaTree>
where Self: Sized,

Extracts children meta map out of a value.
source§

fn extract_meta_tree(value: &Annotated<Self>) -> MetaTree
where Self: Sized,

Extracts the meta tree out of annotated value. Read more
source§

impl JsonSchema for SpanStatus

source§

fn schema_name() -> String

The name of the generated JSON Schema. Read more
source§

fn json_schema(gen: &mut SchemaGenerator) -> Schema

Generates a JSON Schema for this type. Read more
§

fn is_referenceable() -> bool

Whether JSON Schemas generated for this type should be re-used where possible using the $ref keyword. Read more
source§

impl PartialEq for SpanStatus

source§

fn eq(&self, other: &SpanStatus) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl ProcessValue for SpanStatus

source§

fn value_type(&self) -> EnumSet<ValueType>

Returns the type of the value.
source§

fn process_value<P>( &mut self, meta: &mut Meta, processor: &mut P, state: &ProcessingState<'_> ) -> Result<(), ProcessingAction>
where P: Processor,

Executes a processor on this value.
source§

fn process_child_values<P>( &mut self, processor: &mut P, state: &ProcessingState<'_> ) -> Result<(), ProcessingAction>
where P: Processor,

Recurses into children of this value.
source§

impl Serialize for SpanStatus

source§

fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Copy for SpanStatus

source§

impl StructuralPartialEq for SpanStatus

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for T
where T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> Serialize for T
where T: Serialize + ?Sized,

source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<Ok, Error>

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more