Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

A macro to reify structs and their fields for type-safe runtime invocation and reflective access to fields and attributes

Notifications You must be signed in to change notification settings

EngineersBox/Rust-Struct-Reification

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Rust-Struct-Reification

A macro to reify structs and their fields for type-safe runtime invocation and reflective access to fields and attributes

Example:

use crate::reify;

reify!{
    struct TestStruct {
        #[some_attr=5]
        pub field1: u64,
        #[macro_attr(Value)]
        field2: Vec<String>,
        field3: Box<u16>,
    }
}

impl TestStruct {
    pub fn new() -> TestStruct {
        return TestStruct {
            field1: 42,
            field2: vec![String::from("something"), String::from("else")],
            field3: Box::new(64),
        };
    }
}

fn main() {
    println!("{:?}", TestStruct::get_field_attribute_map());
    // Prints: { "field1": "some_attr=5", "field2": "macro_attr(Value)", "field3": "" }
    println!("{:?}", TestStruct::get_field_attribute("field1"));
    // Prints: Ok(Some("some_attr=5"))
    println!("{:?}", TestStruct::get_field_attribute("field3"));
    // Prints: Ok(None)
    println!("{:?}", TestStruct::get_field_attribute("field4"));
    // Prints: Err(TypedAttributeRetrievalError{ message: "..." })

    let test_struct: TestStruct = TestStruct::new();
    println!("{:?}", test_struct::get_field("field1"));
    // Prints: Ok(Any { .. })
    println!("{:?}", test_struct::get_field_typed::<Vec<String>>("field2"))
    // Prints: Ok({ "something", "else" })
}

About

A macro to reify structs and their fields for type-safe runtime invocation and reflective access to fields and attributes

Topics

Resources

Stars

Watchers

Forks

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.