emoji-clock-2

Crates.ioemoji-clock-2
lib.rsemoji-clock-2
version0.2.0
sourcesrc
created_at2024-03-02 16:07:46.654847
updated_at2024-03-04 21:48:54.981982
descriptionConvert time and chrono types to emojis
homepagehttps://github.com/GuillerLT/emoji-clock-2
repositoryhttps://github.com/GuillerLT/emoji-clock-2
max_upload_size
id1159800
size16,847
Guillermo Lloret Talavera (GuillerLT)

documentation

https://docs.rs/emoji-clock-2

README

emoji-clock-2

use time::Time; // feature time
use emoji_clock_2::{Clock, Rounding};
let clock = Clock::new(Time::from_hms(12, 29, 00).unwrap()).with_rounding(Rounding::Floor);
assert_eq!("🕛", clock.to_string());
use chrono::NaiveTime; // feature chrono
use emoji_clock_2::{Clock, Meridiem};
let am_clock = Clock::new(NaiveTime::from_hms_opt(9, 15, 00).unwrap()).with_meridiem(Meridiem::default());
assert_eq!("🕤🌞", am_clock.to_string());
let pm_clock = Clock::new(NaiveTime::from_hms_opt(21, 44, 00).unwrap()).with_meridiem(Meridiem{ am: '🌞', pm: '🌙' });
assert_eq!("🕤🌙", pm_clock.to_string());

This library is inspired by emoji-clock.

Differences from emoji-clock

  • time and chrono compatibility: supports both chrono and time libraries through features. By default, none are enabled, giving you the freedom to choose.
  • 30-Minute precision: more detailed time representation with double the granularity.
  • Rounding options: round, floor or ceil.
  • no_std
Commit count: 0

cargo fmt