Constant kdbplus::ipc::qinf::MINUTE

source ·
pub const MINUTE: Lazy<Duration>;
Expand description

Infinity value of minute (0Wu).

Example

use kdbplus::ipc::*;

fn main() {
    let q_minute_inf = K::new_minute(*qinf::MINUTE);
    assert_eq!(format!("{}", q_minute_inf), String::from("0Wu"));
}