//! Value conversion helpers for pagination.
usecrate::builder::Value;implFrom<i64>forValue{fnfrom(v:i64)->Self{Self::Int(v)}}implFrom<i32>forValue{fnfrom(v:i32)->Self{Self::Int(i64::from(v))}}implFrom<f64>forValue{fnfrom(v:f64)->Self{Self::Float(v)}}implFrom<String>forValue{fnfrom(v: String)->Self{Self::String(v)}}implFrom<&str>forValue{fnfrom(v:&str)->Self{Self::String(v.to_string())}}implFrom<bool>forValue{fnfrom(v:bool)->Self{Self::Bool(v)}}#[cfg(test)]modtests{usesuper::*;#[test]fntest_value_from_conversions(){let_: Value =42i64.into();let_: Value =42i32.into();let_: Value =1.234f64.into();let_: Value ="hello".into();let_: Value =String::from("world").into();let_: Value =true.into();}}