mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 21:37:57 +03:00
use core::fmt instead of std::fmt
This commit is contained in:
parent
870d11b830
commit
7b6e35b992
10 changed files with 11 additions and 11 deletions
|
@ -5,7 +5,7 @@
|
||||||
#![feature(error_generic_member_access)]
|
#![feature(error_generic_member_access)]
|
||||||
|
|
||||||
use std::error::{Error, Request};
|
use std::error::{Error, Request};
|
||||||
use std::fmt::{self, Debug, Display};
|
use core::fmt::{self, Debug, Display};
|
||||||
|
|
||||||
struct MyError(Thing);
|
struct MyError(Thing);
|
||||||
struct Thing;
|
struct Thing;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use std::fmt::Display;
|
use core::fmt::Display;
|
||||||
use std::path::{self, Path, PathBuf};
|
use std::path::{self, Path, PathBuf};
|
||||||
|
|
||||||
#[doc(hidden)]
|
#[doc(hidden)]
|
||||||
|
|
|
@ -62,7 +62,7 @@
|
||||||
//! which may be arbitrary expressions. For example:
|
//! which may be arbitrary expressions. For example:
|
||||||
//!
|
//!
|
||||||
//! ```rust
|
//! ```rust
|
||||||
//! # use std::i32;
|
//! # use core::i32;
|
||||||
//! # use thiserror::Error;
|
//! # use thiserror::Error;
|
||||||
//! #
|
//! #
|
||||||
//! #[derive(Error, Debug)]
|
//! #[derive(Error, Debug)]
|
||||||
|
@ -129,7 +129,7 @@
|
||||||
//! std::error::Error` will work as a source.
|
//! std::error::Error` will work as a source.
|
||||||
//!
|
//!
|
||||||
//! ```rust
|
//! ```rust
|
||||||
//! # use std::fmt::{self, Display};
|
//! # use core::fmt::{self, Display};
|
||||||
//! # use thiserror::Error;
|
//! # use thiserror::Error;
|
||||||
//! #
|
//! #
|
||||||
//! #[derive(Error, Debug)]
|
//! #[derive(Error, Debug)]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#![allow(clippy::needless_raw_string_hashes, clippy::uninlined_format_args)]
|
#![allow(clippy::needless_raw_string_hashes, clippy::uninlined_format_args)]
|
||||||
|
|
||||||
use std::fmt::{self, Display};
|
use core::fmt::{self, Display};
|
||||||
use thiserror::Error;
|
use thiserror::Error;
|
||||||
|
|
||||||
fn assert<T: Display>(expected: &str, value: T) {
|
fn assert<T: Display>(expected: &str, value: T) {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#![allow(dead_code)]
|
#![allow(dead_code)]
|
||||||
|
|
||||||
use std::fmt::{self, Display};
|
use core::fmt::{self, Display};
|
||||||
use std::io;
|
use std::io;
|
||||||
use thiserror::Error;
|
use thiserror::Error;
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#![allow(clippy::iter_cloned_collect, clippy::uninlined_format_args)]
|
#![allow(clippy::iter_cloned_collect, clippy::uninlined_format_args)]
|
||||||
|
|
||||||
use std::fmt::Display;
|
use core::fmt::Display;
|
||||||
use thiserror::Error;
|
use thiserror::Error;
|
||||||
|
|
||||||
// Some of the elaborate cases from the rcc codebase, which is a C compiler in
|
// Some of the elaborate cases from the rcc codebase, which is a C compiler in
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#![allow(clippy::needless_late_init, clippy::uninlined_format_args)]
|
#![allow(clippy::needless_late_init, clippy::uninlined_format_args)]
|
||||||
|
|
||||||
use std::fmt::{self, Debug, Display};
|
use core::fmt::{self, Debug, Display};
|
||||||
use thiserror::Error;
|
use thiserror::Error;
|
||||||
|
|
||||||
pub struct NoFormat;
|
pub struct NoFormat;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
use core::fmt::Display;
|
||||||
use ref_cast::RefCast;
|
use ref_cast::RefCast;
|
||||||
use std::fmt::Display;
|
|
||||||
use std::path::{Path, PathBuf};
|
use std::path::{Path, PathBuf};
|
||||||
use thiserror::Error;
|
use thiserror::Error;
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use std::fmt::{self, Display};
|
use core::fmt::{self, Display};
|
||||||
use thiserror::Error;
|
use thiserror::Error;
|
||||||
|
|
||||||
#[derive(Error, Debug)]
|
#[derive(Error, Debug)]
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use std::fmt::Debug;
|
use core::fmt::Debug;
|
||||||
use thiserror::Error;
|
use thiserror::Error;
|
||||||
|
|
||||||
#[derive(Error, Debug)]
|
#[derive(Error, Debug)]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue