InertiaProps

Derive Macro InertiaProps 

Source
#[derive(InertiaProps)]
Expand description

Derive macro for generating Serialize implementation for Inertia props

§Example

#[derive(InertiaProps)]
struct HomeProps {
    title: String,
    user: User,
}