rillrate-protocol 0.36.0

Top level protocol for the RillRate protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use super::state::*;
use crate::base::list_flow::ListFlowTracer;
use derive_more::{Deref, DerefMut};

#[derive(Deref, DerefMut)]
pub struct DescriptionsListTracer {
    tracer: ListFlowTracer<DescriptionsListSpec>,
}

impl DescriptionsListTracer {
    #[allow(clippy::new_without_default)]
    pub fn new() -> Self {
        let path = DescriptionsListSpec::path();
        Self {
            tracer: ListFlowTracer::new(path).0,
        }
    }
}