euv-macros 0.5.19

Procedural macros for the euv UI framework, providing the macro and attribute for declarative UI composition.
Documentation
use crate::*;

/// The parsed input of the `computed!` macro.
///
/// Contains a list of signal expressions, a closure body with parameter names and optional types,
/// and a return type for the computed signal.
/// Parameter names are `None` when the closure uses `_` (anonymous) parameters.
#[derive(Clone, Data, Debug, New)]
pub(crate) struct ComputedInput {
    /// The signal expressions to watch.
    #[get(pub(crate))]
    #[get_mut(pub(crate))]
    #[set(pub(crate))]
    pub(crate) signals: Vec<Expr>,
    /// The parameter names of the closure. `None` for anonymous `_` parameters.
    #[get(pub(crate))]
    #[get_mut(pub(crate))]
    #[set(pub(crate))]
    pub(crate) param_names: Vec<Option<Ident>>,
    /// The optional parameter types of the closure.
    #[get(pub(crate))]
    #[get_mut(pub(crate))]
    #[set(pub(crate))]
    pub(crate) param_types: Vec<Option<Type>>,
    /// The return type of the computed closure.
    #[get(pub(crate))]
    #[get_mut(pub(crate))]
    #[set(pub(crate))]
    pub(crate) return_type: Type,
    /// The closure body statements.
    #[get(pub(crate))]
    #[get_mut(pub(crate))]
    #[set(pub(crate))]
    pub(crate) body: Vec<Stmt>,
}