pub enum GpuSpanCreationError {
TooManyPendingSpans,
}
Expand description
Errors that can occur when creating a gpu span.
Variants§
TooManyPendingSpans
More than 32767
spans are still waiting for gpu data.
Trait Implementations§
source§impl Debug for GpuSpanCreationError
impl Debug for GpuSpanCreationError
source§impl Display for GpuSpanCreationError
impl Display for GpuSpanCreationError
source§impl Error for GpuSpanCreationError
impl Error for GpuSpanCreationError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for GpuSpanCreationError
impl RefUnwindSafe for GpuSpanCreationError
impl Send for GpuSpanCreationError
impl Sync for GpuSpanCreationError
impl Unpin for GpuSpanCreationError
impl UnwindSafe for GpuSpanCreationError
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