pub enum DenseStreamTelemetryError {
StatePoisoned,
InvalidForwardState(&'static str),
UnknownExecutionGroup(String),
}Expand description
Invalid dense-stream telemetry lifecycle or execution-group access.
Variants§
StatePoisoned
Shared telemetry state was poisoned.
InvalidForwardState(&'static str)
Forward lifecycle calls were inconsistent.
UnknownExecutionGroup(String)
The requested execution group was not declared.
Trait Implementations§
Source§impl Clone for DenseStreamTelemetryError
impl Clone for DenseStreamTelemetryError
Source§fn clone(&self) -> DenseStreamTelemetryError
fn clone(&self) -> DenseStreamTelemetryError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DenseStreamTelemetryError
impl Debug for DenseStreamTelemetryError
Source§impl Display for DenseStreamTelemetryError
impl Display for DenseStreamTelemetryError
impl Eq for DenseStreamTelemetryError
Source§impl Error for DenseStreamTelemetryError
impl Error for DenseStreamTelemetryError
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()
impl StructuralPartialEq for DenseStreamTelemetryError
Auto Trait Implementations§
impl Freeze for DenseStreamTelemetryError
impl RefUnwindSafe for DenseStreamTelemetryError
impl Send for DenseStreamTelemetryError
impl Sync for DenseStreamTelemetryError
impl Unpin for DenseStreamTelemetryError
impl UnsafeUnpin for DenseStreamTelemetryError
impl UnwindSafe for DenseStreamTelemetryError
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