Yui is an attribute reader for Rust.
Yui provides a derive macro YuiAttribute
to create attribute structure by struct, StructStruct
, TupleStruct
and NoFieldStruct
are all supported.
```rust
use yui::YuiAttribute;
struct NoField;
struct Tuple(i32, String);
struct Struct { int: i32, float: f64, bool: bool, } ```
String
in Rust.bool
in Rust.enum_value=true
option.String
Skey.
If you want to make a field optional, use Option<T>
on the field type.```rust use yui::{YuiEnumValue, YuiAttribute};
struct Bar;
enum SomeEnum { A, B }
struct Foo {
pub string: String,
pub bool: bool,
pub int: i32, // or other integer types like u32 ...
pub float: f32, // or other float types like f64
pub object: Bar, // any defined object
#[attributefield(enumvalue=true)]
pub enumfield: SomeEnum, // have to add enumvalue option
pub list: Vec
alias
\
Generated reader will parse the field with the given name instead of its field name in Rust.
rust
#[derive(YuiAttribute)]
struct Foo {
#[attribute_field(alias = "i32")]
pub int32: i32,
}
default
\
Set the default value for this field. If the value is not present when parsing, the default value will be set to the field, even the field is optional.Object
, Vec
or HashMap
fields can`t have default value.
rust
#[derive(YuiAttribute)]
struct Foo {
#[attribute_field(default = 1024)]
pub int32: i32
}
enum_value
\
use enum_value=true
on Enum type field.Use derive YuiEnumValue
on Enum to create a Enum value type.
```rust
use yui::YuiEnumValue;
enum SomeEnum {
A,
B
}
And then, the enum can be used as a field type.
* `variant_value` attribute\
Customize a string corresponding value to variant(default is the snake case of variant name in Rust).
rust
use yui::YuiEnumValue;
enum SomeEnum { #[variant_value("aaa")] // default is 'a' A, B } ```
syn
andquote
yui::AttributeStructs<T>
can be used in parse_macro_input!
rust
let attributes = syn::parse_macro_inpit!(input as yui::AttributeStructs<Foo>);
If you want to parse attribute from syn::Meta
, use yui::AttributeStruct::from_meta()
.\
And attribute structure with value can be convert to token automatically. But the visibility of each field must be public.
```rust
use proc_macro::TokenStream;
struct Foo { #[attribute_field(default = 1024)] pub int32: i32 }
fn derivefn(input: TokenStream) -> TokenStream {
let attributes = syn::parsemacro_input!(input as yui::AttributeStructs
TokenStream::from(quote::quote! {
fn get_attrs() -> Vec<Foo> {
vec![#(#attrs),*]
}
})
} ```
If you want to use builtin reader generator, enable generate-reader
feature.
Macro generate_reader
is used to generate a derive macro.
```rust
use yui::generate_reader;
generated_reader!( MyDerive, [StructAttribute1, StructAttribute2], [FieldAttribute1, FieldAttribute2] );
``
The macro will generate a public derive, it can be use to read attributes of
struct,
enumor
union, and record the metadata by generate
impl` block.
Use the generated derive macro on a struct, and you can use the macro has_attribute
and get_attribute
to process attributes of the struct.
```rust
use yui::{getattribute, hasattribute};
struct Foo { #[FieldAttribute1("some parameters")] field: i32 }
fn somefn() {
assert!(hasattribute!(Foo, StructAttribute1));
assert!(hasattribute!(Foo::field, FieldAttribute1));
let structattr1: Option