//! The module contains [`Peaker`] trait and its implementations to be used in [`Height`] and [`Width`].
//!
//! [`Width`]: crate::settings::width::Width
//! [`Height`]: crate::settings::height::Height
/// A strategy of width function.
/// It determines the order how the function is applied.
pub use PriorityLeft;
pub use PriorityMax;
pub use PriorityMin;
pub use PriorityNone;
pub use PriorityRight;