pub(crate) enum TelemetrySource {
Bpf,
NvidiaSmi,
Simulator,
}Expand description
Telemetry source selection result.
Variants§
Bpf
Real BPF ring buffer events from kernel probes.
NvidiaSmi
nvidia-smi + /proc polling (no BPF, but real GPU data).
Simulator
Fully simulated data for development/demos.
Trait Implementations§
Source§impl Clone for TelemetrySource
impl Clone for TelemetrySource
Source§fn clone(&self) -> TelemetrySource
fn clone(&self) -> TelemetrySource
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 TelemetrySource
impl Debug for TelemetrySource
Source§impl Display for TelemetrySource
impl Display for TelemetrySource
impl Copy for TelemetrySource
Auto Trait Implementations§
impl Freeze for TelemetrySource
impl RefUnwindSafe for TelemetrySource
impl Send for TelemetrySource
impl Sync for TelemetrySource
impl Unpin for TelemetrySource
impl UnwindSafe for TelemetrySource
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