Enum sentry_core::protocol::SpanStatus
source · [−]#[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
Unavailable
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
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<SpanStatus, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<SpanStatus, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
type Err = ParseStatusError
type Err = ParseStatusError
The associated error which can be returned from parsing.
Parses a string s
to return a value of this type. Read more
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
pub 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
Auto Trait Implementations
impl RefUnwindSafe for SpanStatus
impl Send for SpanStatus
impl Sync for SpanStatus
impl Unpin for SpanStatus
impl UnwindSafe for SpanStatus
Blanket Implementations
Mutably borrows from an owned value. Read more