masonry 0.4.0

Traits and types of the Masonry toolkit.
Documentation
// Copyright 2025 the Xilem Authors
// SPDX-License-Identifier: Apache-2.0

//! Value types used in properties.
//!
//! The types in this modules aren't properties themselves: they're types that the fields
//! and variants of properties can have.
//!
//! So for instance, you can't set a button's [`Gradient`], but you can set a button's
//! [`Background`] to [`Background::Gradient`], which takes a `Gradient` value.
//!
//! [`Background`]: crate::properties::Background
//! [`Background::Gradient`]: crate::properties::Background::Gradient

mod alignment;
mod as_unit;
mod gradient;
mod length;
mod unit_point;

pub use alignment::*;
pub use as_unit::*;
pub use gradient::*;
pub use length::*;
pub use unit_point::UnitPoint;