use core::fmt instead of std::fmt

This commit is contained in:
Robert Jördens 2024-05-17 15:34:04 +02:00
parent 870d11b830
commit 7b6e35b992
10 changed files with 11 additions and 11 deletions

View file

@ -5,7 +5,7 @@
#![feature(error_generic_member_access)]
use std::error::{Error, Request};
use std::fmt::{self, Debug, Display};
use core::fmt::{self, Debug, Display};
struct MyError(Thing);
struct Thing;

View file

@ -1,4 +1,4 @@
use std::fmt::Display;
use core::fmt::Display;
use std::path::{self, Path, PathBuf};
#[doc(hidden)]

View file

@ -62,7 +62,7 @@
//! which may be arbitrary expressions. For example:
//!
//! ```rust
//! # use std::i32;
//! # use core::i32;
//! # use thiserror::Error;
//! #
//! #[derive(Error, Debug)]
@ -129,7 +129,7 @@
//! std::error::Error` will work as a source.
//!
//! ```rust
//! # use std::fmt::{self, Display};
//! # use core::fmt::{self, Display};
//! # use thiserror::Error;
//! #
//! #[derive(Error, Debug)]

View file

@ -1,6 +1,6 @@
#![allow(clippy::needless_raw_string_hashes, clippy::uninlined_format_args)]
use std::fmt::{self, Display};
use core::fmt::{self, Display};
use thiserror::Error;
fn assert<T: Display>(expected: &str, value: T) {

View file

@ -1,6 +1,6 @@
#![allow(dead_code)]
use std::fmt::{self, Display};
use core::fmt::{self, Display};
use std::io;
use thiserror::Error;

View file

@ -1,6 +1,6 @@
#![allow(clippy::iter_cloned_collect, clippy::uninlined_format_args)]
use std::fmt::Display;
use core::fmt::Display;
use thiserror::Error;
// Some of the elaborate cases from the rcc codebase, which is a C compiler in

View file

@ -1,6 +1,6 @@
#![allow(clippy::needless_late_init, clippy::uninlined_format_args)]
use std::fmt::{self, Debug, Display};
use core::fmt::{self, Debug, Display};
use thiserror::Error;
pub struct NoFormat;

View file

@ -1,5 +1,5 @@
use core::fmt::Display;
use ref_cast::RefCast;
use std::fmt::Display;
use std::path::{Path, PathBuf};
use thiserror::Error;

View file

@ -1,4 +1,4 @@
use std::fmt::{self, Display};
use core::fmt::{self, Display};
use thiserror::Error;
#[derive(Error, Debug)]

View file

@ -1,4 +1,4 @@
use std::fmt::Debug;
use core::fmt::Debug;
use thiserror::Error;
#[derive(Error, Debug)]