Skip to content

Commit

Permalink
Rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
pitdicker committed Jun 5, 2023
1 parent bc108f7 commit 5690734
Showing 1 changed file with 103 additions and 103 deletions.
206 changes: 103 additions & 103 deletions src/format/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -572,116 +572,116 @@ fn format_inner(
Item::Fixed(ref spec) => {
use self::Fixed::*;

let ret =
match *spec {
ShortMonthName => date.map(|d| {
result.write_str(locale.short_months[d.month0() as usize])
}),
LongMonthName => date.map(|d| {
result.write_str(locale.long_months[d.month0() as usize])
}),
ShortWeekdayName => date.map(|d| {
result.write_str(
locale.short_weekdays[d.weekday().num_days_from_sunday() as usize],
)
}),
LongWeekdayName => date.map(|d| {
result.write_str(
locale.long_weekdays[d.weekday().num_days_from_sunday() as usize],
)
}),
LowerAmPm => time.map(|t| {
let ampm = if t.hour12().0 { locale.am_pm[1] } else { locale.am_pm[0] };
for c in ampm.chars().flat_map(|c| c.to_lowercase()) {
result.write_char(c)?
}
let ret = match *spec {
ShortMonthName => {
date.map(|d| result.write_str(locale.short_months[d.month0() as usize]))
}
LongMonthName => {
date.map(|d| result.write_str(locale.long_months[d.month0() as usize]))
}
ShortWeekdayName => date.map(|d| {
result.write_str(
locale.short_weekdays[d.weekday().num_days_from_sunday() as usize],
)
}),
LongWeekdayName => date.map(|d| {
result.write_str(
locale.long_weekdays[d.weekday().num_days_from_sunday() as usize],
)
}),
LowerAmPm => time.map(|t| {
let ampm = if t.hour12().0 { locale.am_pm[1] } else { locale.am_pm[0] };
for c in ampm.chars().flat_map(|c| c.to_lowercase()) {
result.write_char(c)?
}
Ok(())
}),
UpperAmPm => time.map(|t| {
result.write_str(if t.hour12().0 { locale.am_pm[1] } else { locale.am_pm[0] })
}),
Nanosecond => time.map(|t| {
let nano = t.nanosecond() % 1_000_000_000;
if nano == 0 {
Ok(())
}),
UpperAmPm => time.map(|t| {
result.write_str(if t.hour12().0 {
locale.am_pm[1]
} else {
locale.am_pm[0]
})
}),
Nanosecond => time.map(|t| {
let nano = t.nanosecond() % 1_000_000_000;
if nano == 0 {
Ok(())
} else if nano % 1_000_000 == 0 {
write!(result, ".{:03}", nano / 1_000_000)
} else if nano % 1_000 == 0 {
write!(result, ".{:06}", nano / 1_000)
} else {
write!(result, ".{:09}", nano)
}
}),
Nanosecond3 => time.map(|t| {
let nano = t.nanosecond() % 1_000_000_000;
} else if nano % 1_000_000 == 0 {
write!(result, ".{:03}", nano / 1_000_000)
}),
Nanosecond6 => time.map(|t| {
let nano = t.nanosecond() % 1_000_000_000;
} else if nano % 1_000 == 0 {
write!(result, ".{:06}", nano / 1_000)
}),
Nanosecond9 => time.map(|t| {
let nano = t.nanosecond() % 1_000_000_000;
} else {
write!(result, ".{:09}", nano)
}),
Internal(InternalFixed { val: InternalInternal::Nanosecond3NoDot }) => time
.map(|t| {
let nano = t.nanosecond() % 1_000_000_000;
write!(result, "{:03}", nano / 1_000_000)
}),
Internal(InternalFixed { val: InternalInternal::Nanosecond6NoDot }) => time
.map(|t| {
let nano = t.nanosecond() % 1_000_000_000;
write!(result, "{:06}", nano / 1_000)
}),
Internal(InternalFixed { val: InternalInternal::Nanosecond9NoDot }) => time
.map(|t| {
let nano = t.nanosecond() % 1_000_000_000;
write!(result, "{:09}", nano)
}),
TimezoneName => off.map(|(name, _)| {
result.write_str(name)
}),
TimezoneOffsetColon => off
.map(|(_, off)| write_local_minus_utc(result, off, false, Colons::Single)),
TimezoneOffsetDoubleColon => off
.map(|(_, off)| write_local_minus_utc(result, off, false, Colons::Double)),
TimezoneOffsetTripleColon => off
.map(|(_, off)| write_local_minus_utc(result, off, false, Colons::Triple)),
TimezoneOffsetColonZ => off
.map(|(_, off)| write_local_minus_utc(result, off, true, Colons::Single)),
TimezoneOffset => {
off.map(|(_, off)| write_local_minus_utc(result, off, false, Colons::None))
}
TimezoneOffsetZ => {
off.map(|(_, off)| write_local_minus_utc(result, off, true, Colons::None))
}
Internal(InternalFixed { val: InternalInternal::TimezoneOffsetPermissive }) => {
panic!("Do not try to write %#z it is undefined")
}
RFC2822 =>
// same as `%a, %d %b %Y %H:%M:%S %z`
{
if let (Some(d), Some(t), Some((_, off))) = (date, time, off) {
Some(write_rfc2822_inner(result, d, t, off, locale))
} else {
None
}
}),
Nanosecond3 => time.map(|t| {
let nano = t.nanosecond() % 1_000_000_000;
write!(result, ".{:03}", nano / 1_000_000)
}),
Nanosecond6 => time.map(|t| {
let nano = t.nanosecond() % 1_000_000_000;
write!(result, ".{:06}", nano / 1_000)
}),
Nanosecond9 => time.map(|t| {
let nano = t.nanosecond() % 1_000_000_000;
write!(result, ".{:09}", nano)
}),
Internal(InternalFixed { val: InternalInternal::Nanosecond3NoDot }) => {
time.map(|t| {
let nano = t.nanosecond() % 1_000_000_000;
write!(result, "{:03}", nano / 1_000_000)
})
}
Internal(InternalFixed { val: InternalInternal::Nanosecond6NoDot }) => {
time.map(|t| {
let nano = t.nanosecond() % 1_000_000_000;
write!(result, "{:06}", nano / 1_000)
})
}
Internal(InternalFixed { val: InternalInternal::Nanosecond9NoDot }) => {
time.map(|t| {
let nano = t.nanosecond() % 1_000_000_000;
write!(result, "{:09}", nano)
})
}
TimezoneName => off.map(|(name, _)| result.write_str(name)),
TimezoneOffsetColon => {
off.map(|(_, off)| write_local_minus_utc(result, off, false, Colons::Single))
}
TimezoneOffsetDoubleColon => {
off.map(|(_, off)| write_local_minus_utc(result, off, false, Colons::Double))
}
TimezoneOffsetTripleColon => {
off.map(|(_, off)| write_local_minus_utc(result, off, false, Colons::Triple))
}
TimezoneOffsetColonZ => {
off.map(|(_, off)| write_local_minus_utc(result, off, true, Colons::Single))
}
TimezoneOffset => {
off.map(|(_, off)| write_local_minus_utc(result, off, false, Colons::None))
}
TimezoneOffsetZ => {
off.map(|(_, off)| write_local_minus_utc(result, off, true, Colons::None))
}
Internal(InternalFixed { val: InternalInternal::TimezoneOffsetPermissive }) => {
panic!("Do not try to write %#z it is undefined")
}
RFC2822 =>
// same as `%a, %d %b %Y %H:%M:%S %z`
{
if let (Some(d), Some(t), Some((_, off))) = (date, time, off) {
Some(write_rfc2822_inner(result, d, t, off, locale))
} else {
None
}
RFC3339 =>
// same as `%Y-%m-%dT%H:%M:%S%.f%:z`
{
if let (Some(d), Some(t), Some((_, off))) = (date, time, off) {
Some(write_rfc3339_inner(result, crate::NaiveDateTime::new(*d, *t), off))
} else {
None
}
}
RFC3339 =>
// same as `%Y-%m-%dT%H:%M:%S%.f%:z`
{
if let (Some(d), Some(t), Some((_, off))) = (date, time, off) {
Some(write_rfc3339_inner(result, crate::NaiveDateTime::new(*d, *t), off))
} else {
None
}
};
}
};

ret.unwrap_or(Err(fmt::Error)) // insufficient arguments for given format
}
Expand Down

0 comments on commit 5690734

Please sign in to comment.