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
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
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
Returns a copy of the value. Read more
1.0.0 · 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 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>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for SpanStatus
impl Display for SpanStatus
source§impl FromStr for SpanStatus
impl FromStr for SpanStatus
§type Err = ParseStatusError
type Err = ParseStatusError
The associated error which can be returned from parsing.
source§fn from_str(s: &str) -> Result<SpanStatus, <SpanStatus as FromStr>::Err>
fn from_str(s: &str) -> Result<SpanStatus, <SpanStatus as FromStr>::Err>
Parses a string
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,
Serialize this value into the given Serde serializer. Read more
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
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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.