Skip to content

Commit db93587

Browse files
authored
refactor: implement rav traits for horizon (#616)
Signed-off-by: Gustavo Inacio <[email protected]>
1 parent 1ec3c40 commit db93587

7 files changed

+390
-25
lines changed

.sqlx/query-5ee76e76f4ace2dbab69fd58eaf7f0539d2ffab1289130555dba0f6fdc3065ff.json

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.sqlx/query-f02805d423945f35b93dde58db49872832048b338237c786727a6c9173e23b38.json

Lines changed: 66 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/tap-agent/src/tap/context.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ pub trait NetworkVersion: Send + Sync + 'static {
7070
///
7171
/// A simple `struct Legacy;` would be able to instantiate and pass as
7272
/// value, while having size 1.
73+
#[derive(Debug)]
7374
pub enum Legacy {}
7475
/// 0-sized marker for horizon network
7576
///
@@ -79,6 +80,7 @@ pub enum Legacy {}
7980
///
8081
/// A simple `struct Legacy;` would be able to instantiate and pass as
8182
/// value, while having size 1.
83+
#[derive(Debug)]
8284
pub enum Horizon {}
8385

8486
impl NetworkVersion for Legacy {

0 commit comments

Comments
 (0)