Searched defs:NaiveTime (Results 1 – 8 of 8) sorted by relevance
/aosp_15_r20/external/rust/android-crates-io/crates/chrono/src/naive/time/ |
D | mod.rs | 212 pub struct NaiveTime { struct 218 impl arbitrary::Arbitrary<'_> for NaiveTime { argument 219 fn arbitrary(u: &mut arbitrary::Unstructured) -> arbitrary::Result<NaiveTime> { in arbitrary() 233 impl NaiveTime { impl 245 pub const fn from_hms(hour: u32, min: u32, sec: u32) -> NaiveTime { in from_hms() 273 pub const fn from_hms_opt(hour: u32, min: u32, sec: u32) -> Option<NaiveTime> { in from_hms_opt() 288 pub const fn from_hms_milli(hour: u32, min: u32, sec: u32, milli: u32) -> NaiveTime { in from_hms_milli() 323 ) -> Option<NaiveTime> { in from_hms_milli_opt() 339 pub const fn from_hms_micro(hour: u32, min: u32, sec: u32, micro: u32) -> NaiveTime { in from_hms_micro() 374 ) -> Option<NaiveTime> { in from_hms_micro_opt() [all …]
|
D | rustc_serialize.rs | 4 impl Encodable for NaiveTime { implementation 10 impl Decodable for NaiveTime { implementation 11 fn decode<D: Decoder>(d: &mut D) -> Result<NaiveTime, D::Error> { in decode()
|
D | serde.rs | 8 impl ser::Serialize for NaiveTime { implementation 34 impl<'de> de::Deserialize<'de> for NaiveTime { implementation
|
/aosp_15_r20/external/rust/android-crates-io/crates/chrono/src/format/ |
D | formatting.rs | 56 pub fn new(date: Option<NaiveDate>, time: Option<NaiveTime>, items: I) -> DelayedFormat<I> { in new() 71 time: Option<NaiveTime>, in new_with_offset() 94 time: Option<NaiveTime>, in new_with_locale() 106 time: Option<NaiveTime>, in new_with_offset_and_locale() 149 time: Option<&NaiveTime>, in format() 174 time: Option<&NaiveTime>, in format_item() 193 time: Option<&NaiveTime>, in format_inner()
|
D | parsed.rs | 501 pub fn to_naive_time(&self) -> ParseResult<NaiveTime> { in to_naive_time()
|
/aosp_15_r20/external/rust/android-crates-io/crates/rusqlite/src/types/ |
D | chrono.rs | 31 impl ToSql for NaiveTime { implementation 40 impl FromSql for NaiveTime { implementation
|
/aosp_15_r20/external/rust/android-crates-io/crates/chrono/src/naive/datetime/ |
D | mod.rs | 408 pub const fn time(&self) -> NaiveTime { in time()
|
/aosp_15_r20/external/rust/android-crates-io/crates/chrono/src/datetime/ |
D | mod.rs | 182 pub fn time(&self) -> NaiveTime { in time()
|