bcc 0.0.34

Idiomatic Rust bindings for BPF Compiler Collection (BCC)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use std::hash::{Hash, Hasher};

#[derive(Debug)]
pub struct RawTracepoint {}

impl PartialEq for RawTracepoint {
    fn eq(&self, _: &RawTracepoint) -> bool {
        true
    }
}

impl Eq for RawTracepoint {}

impl Hash for RawTracepoint {
    fn hash<H: Hasher>(&self, _: &mut H) {}
}