use ;
/// Get the begin of hour
/// 获取某小时的开始时间
/// # Arguments
///
/// * `date_time`: the date time (时间)
///
/// returns: DateTime<Tz>
///
/// # Examples
///
/// ```
/// use chrono::{TimeZone, Utc};
/// use hutools::date::begin_of_hour;
/// let time = Utc.ymd(2008,8,8).and_hms(8,8,8);
/// let actual = Utc.ymd(2008,8,8).and_hms(8,0,0);
/// let result = begin_of_hour(time);
/// assert_eq!(actual,result);
/// ```