use ;
/// Represents the direction for sorting query results.
///
/// Used in conjunction with a column name to specify how results should be ordered.
///
/// # Examples
///
/// ```rust
/// use sqlx_paginated::{QuerySortDirection, QueryParamsBuilder};
/// use serde::Serialize;
///
/// #[derive(Serialize, Default)]
/// struct User {
/// name: String,
/// created_at: String,
/// }
///
/// let params = QueryParamsBuilder::<User>::new()
/// .with_sort("created_at", QuerySortDirection::Descending)
/// .build();
/// ```