Trait extruct_core::Fields
source · pub trait Fields {
// Required method
fn fields() -> &'static [&'static str];
}
Expand description
A trait that provides access to the list of named fields of a struct represented as string literals.
This trait is not intended to be implemented manually. Instead,
use the #[derive(Fields)]
macro from extruct
library.
Required Methods§
Object Safety§
This trait is not object safe.