[go: up one dir, main page]

re_analytics 0.3.1

Rerun's analytics SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(thiserror::Error, Debug)]
pub enum SinkError {
    #[error(transparent)]
    Io(#[from] std::io::Error),

    #[error(transparent)]
    Serde(#[from] serde_json::Error),
}

#[derive(Default, Debug, Clone)]
pub struct PostHogSink {}