1/** 2Representation of a limit / offset clause in SQL. 3 */ 4#[derive(Debug, Clone, Copy)] 5pub struct LimitClause { 6 /// Limit to set to 7 pub limit: u64, 8 /// Optional offset to append. 9 pub offset: Option<u64>, 10}