Enum sentry_types::protocol::v7::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
sourceimpl Clone for SpanStatus
impl Clone for SpanStatus
sourcefn clone(&self) -> SpanStatus
fn clone(&self) -> SpanStatus
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SpanStatus
impl Debug for SpanStatus
sourceimpl<'de> Deserialize<'de> for SpanStatus
impl<'de> Deserialize<'de> for SpanStatus
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Display for SpanStatus
impl Display for SpanStatus
sourceimpl FromStr for SpanStatus
impl FromStr for SpanStatus
type Err = ParseStatusError
type Err = ParseStatusError
The associated error which can be returned from parsing.
sourceimpl Hash for SpanStatus
impl Hash for SpanStatus
sourceimpl PartialEq<SpanStatus> for SpanStatus
impl PartialEq<SpanStatus> for SpanStatus
sourceimpl Serialize for SpanStatus
impl Serialize for SpanStatus
impl Copy for SpanStatus
impl Eq for SpanStatus
impl StructuralEq for SpanStatus
impl StructuralPartialEq for SpanStatus
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more