//! Functions to derive `darling`'s traits from well-formed input, without directly depending //! on `proc_macro`.
use proc_macro2::TokenStream; use quote::ToTokens; use syn::DeriveInput;
usecrate::options;
/// Run an expression which returns a `darling::Result`, then either return the tokenized /// representation of the `Ok` value, or the tokens of the compiler errors in the `Err` case.
macro_rules! emit_impl_or_error {
($e:expr) => { match $e {
Ok(val) => val.into_token_stream(),
Err(err) => err.write_errors(),
}
};
}
/// Create tokens for a `darling::FromMeta` impl from a `DeriveInput`. If /// the input cannot produce a valid impl, the returned tokens will contain /// compile errors instead. pubfn from_meta(input: &DeriveInput) -> TokenStream {
emit_impl_or_error!(options::FromMetaOptions::new(input))
}
/// Create tokens for a `darling::FromAttributes` impl from a `DeriveInput`. If /// the input cannot produce a valid impl, the returned tokens will contain /// compile errors instead. pubfn from_attributes(input: &DeriveInput) -> TokenStream {
emit_impl_or_error!(options::FromAttributesOptions::new(input))
}
/// Create tokens for a `darling::FromDeriveInput` impl from a `DeriveInput`. If /// the input cannot produce a valid impl, the returned tokens will contain /// compile errors instead. pubfn from_derive_input(input: &DeriveInput) -> TokenStream {
emit_impl_or_error!(options::FdiOptions::new(input))
}
/// Create tokens for a `darling::FromField` impl from a `DeriveInput`. If /// the input cannot produce a valid impl, the returned tokens will contain /// compile errors instead. pubfn from_field(input: &DeriveInput) -> TokenStream {
emit_impl_or_error!(options::FromFieldOptions::new(input))
}
/// Create tokens for a `darling::FromTypeParam` impl from a `DeriveInput`. If /// the input cannot produce a valid impl, the returned tokens will contain /// compile errors instead. pubfn from_type_param(input: &DeriveInput) -> TokenStream {
emit_impl_or_error!(options::FromTypeParamOptions::new(input))
}
/// Create tokens for a `darling::FromVariant` impl from a `DeriveInput`. If /// the input cannot produce a valid impl, the returned tokens will contain /// compile errors instead. pubfn from_variant(input: &DeriveInput) -> TokenStream {
emit_impl_or_error!(options::FromVariantOptions::new(input))
}
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.15 Sekunden
(vorverarbeitet am 2026-06-18)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.