We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b869b2 commit ae9479dCopy full SHA for ae9479d
src/ast/query.rs
@@ -979,7 +979,7 @@ impl fmt::Display for ReplaceSelectElement {
979
980
impl fmt::Display for SelectItem {
981
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
982
- use std::fmt::Write;
+ use core::fmt::Write;
983
match &self {
984
SelectItem::UnnamedExpr(expr) => expr.fmt(f),
985
SelectItem::ExprWithAlias { expr, alias } => {
src/display_utils.rs
@@ -1,4 +1,4 @@
1
-use std::fmt::{self, Display, Write};
+use core::fmt::{self, Display, Write};
2
3
/// A wrapper around a value that adds an indent to the value when displayed with {:#}.
4
pub(crate) struct Indent<T>(pub T);
0 commit comments