fuel_streams_core/receipts/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod subjects;
pub mod types;

pub use subjects::*;
use types::*;

use crate::{StreamEncoder, Streamable};

impl StreamEncoder for Receipt {}
impl Streamable for Receipt {
    const NAME: &'static str = "receipts";
    const WILDCARD_LIST: &'static [&'static str] =
        &[ReceiptsCallSubject::WILDCARD, ReceiptsByIdSubject::WILDCARD];
}