ToolKit Utils
Small utility helpers used by Gears / ToolKit.
Overview
The cf-gears-toolkit-utils crate currently provides optional serde support for humantime.
Usage
use ;
use Duration;
License
Licensed under Apache-2.0.
Small utility helpers used by Gears / ToolKit.
The cf-gears-toolkit-utils crate currently provides optional serde support for humantime.
use serde::{Deserialize, Serialize};
use std::time::Duration;
#[derive(Serialize, Deserialize)]
struct Foo {
#[serde(with = "toolkit_utils::humantime_serde")]
timeout: Duration,
}
Licensed under Apache-2.0.