#data-stream #blockchain

fuel-streams-macros

Macros for implementing traits and deriving functionality in the fuel-streams crate

13 releases

new 0.0.16 Dec 28, 2024
0.0.15 Dec 27, 2024
0.0.13 Nov 28, 2024
0.0.11 Oct 15, 2024
0.0.6 Aug 29, 2024

#176 in Magic Beans

Download history 431/week @ 2024-09-07 38/week @ 2024-09-14 164/week @ 2024-09-21 44/week @ 2024-09-28 12/week @ 2024-10-05 135/week @ 2024-10-12 19/week @ 2024-10-19 4/week @ 2024-10-26 8/week @ 2024-11-02 1/week @ 2024-11-09 135/week @ 2024-11-16 173/week @ 2024-11-23 32/week @ 2024-11-30 32/week @ 2024-12-07 4/week @ 2024-12-14 160/week @ 2024-12-21

261 downloads per month
Used in 3 crates (via fuel-streams-core)

Apache-2.0

8KB


Logo

Fuel Streams Macros

Macros for implementing traits and deriving functionality in the fuel-streams ecosystem

CI Coverage Crates.io MSRV crates.io docs

📚 Documentation   🐛 Report Bug   ✨ Request Feature

📝 About The Project

Provides macros for implementing traits and deriving functionality in the fuel-streams ecosystem.

[!NOTE] This crate is specifically modeled for the Fuel Data Systems project, and is not intended for general use outside of the project.

🚀 Usage

The Subject derive macro allows you to easily implement the Subject trait for your structs. It generates methods for parsing, building, and creating wildcards for your subject.

Example:

use fuel_streams_macros::subject::{Subject, IntoSubject, SubjectBuildable};

#[derive(Subject, Debug, Clone, Default)]
#[subject_wildcard = "test.>"]
#[subject_format = "test.{field1}.{field2}"]
struct TestSubject {
    field1: Option<String>,
    field2: Option<u32>,
}

// Create a new TestSubject
let subject = TestSubject {
    field1: Some("foo".to_string()),
    field2: Some(55),
};

// Parse the subject
assert_eq!(subject.parse(), "test.foo.55");

// Create a wildcard
assert_eq!(TestSubject::wildcard(None, Some(10)), "test.*.10");

// Create using the build method
let subject = TestSubject::build(Some("foo".into()), Some(55));
assert_eq!(subject.parse(), "test.foo.55");

// Create a new TestSubject with the builder pattern
let subject = TestSubject::new()
    .with_field1(Some("foo".to_string()))
    .with_field2(Some(55));
assert_eq!(subject.parse(), "test.foo.55");

// Convert to a string
assert_eq!(&subject.to_string(), "test.foo.55");

🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

For more information on contributing, please see the CONTRIBUTING.md file in the root of the repository.

📜 License

This repo is licensed under the Apache-2.0 license. See LICENSE for more information.

Dependencies

~235–680KB
~16K SLoC