Skip to content

Commit

Permalink
chore: use prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnisDa committed Jan 30, 2025
1 parent 279d064 commit be685ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/table/column.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use std::fmt::Display;
use std::fmt;

use crate::{expr::*, types::*};

Expand Down Expand Up @@ -220,8 +220,8 @@ pub enum PgDateTruncUnit {
Millennium,
}

impl Display for PgDateTruncUnit {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
impl fmt::Display for PgDateTruncUnit {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let text = match self {
PgDateTruncUnit::Microseconds => "microseconds",
PgDateTruncUnit::Milliseconds => "milliseconds",
Expand Down

0 comments on commit be685ed

Please sign in to comment.