pub enum DataplaneSpanKind {
Fbmu,
Fbbu,
GpuSession,
CapabilityCache,
}Expand description
Phase 219 data-plane span family. Each variant maps 1:1 to a span
name in PHASE_219_SPAN_NAMES so callers can refer to the family
by typed identity rather than stringly-typed names.
Variants§
Fbmu
fabricbios.data.fbmu — FBMU memory data-plane operation.
Fbbu
fabricbios.data.fbbu — FBBU block data-plane operation.
GpuSession
fabricbios.data.gpu_session — GPU session lifecycle/IO.
CapabilityCache
grafos.runtime.capability_cache — capability cache hit/miss.
Implementations§
Trait Implementations§
Source§impl Clone for DataplaneSpanKind
impl Clone for DataplaneSpanKind
Source§fn clone(&self) -> DataplaneSpanKind
fn clone(&self) -> DataplaneSpanKind
Returns a duplicate 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 DataplaneSpanKind
impl Debug for DataplaneSpanKind
Source§impl PartialEq for DataplaneSpanKind
impl PartialEq for DataplaneSpanKind
impl Copy for DataplaneSpanKind
impl Eq for DataplaneSpanKind
impl StructuralPartialEq for DataplaneSpanKind
Auto Trait Implementations§
impl Freeze for DataplaneSpanKind
impl RefUnwindSafe for DataplaneSpanKind
impl Send for DataplaneSpanKind
impl Sync for DataplaneSpanKind
impl Unpin for DataplaneSpanKind
impl UnwindSafe for DataplaneSpanKind
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