//! Parser for CacheableRequest derive macro.
usedarling::FromDeriveInput;usesyn::{Generics, Ident};/// Parsed input for the CacheableRequest derive macro.
#[derive(Debug, FromDeriveInput)]#[darling(attributes(cacheable_request),supports(struct_any, enum_any))]pubstructSource{/// The type name.
pubident: Ident,
/// Generic parameters.
pubgenerics: Generics,
// Future: field-level validation attributes will be added here
}