Skip to content

Commit 778d5f2

Browse files
author
Clar Charr
committed
Add Cow<str> -> Box<Error> impls.
1 parent 18366f4 commit 778d5f2

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/libstd/error.rs

+15
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353

5454
use alloc::allocator;
5555
use any::TypeId;
56+
use borrow::Cow;
5657
use cell;
5758
use char;
5859
use fmt::{self, Debug, Display};
@@ -217,6 +218,20 @@ impl<'a> From<&'a str> for Box<Error> {
217218
}
218219
}
219220

221+
#[stable(feature = "cow_box_error", since = "1.22.0")]
222+
impl<'a, 'b> From<Cow<'b, str>> for Box<Error + Send + Sync + 'a> {
223+
fn from(err: Cow<'b, str>) -> Box<Error + Send + Sync + 'a> {
224+
From::from(String::from(err))
225+
}
226+
}
227+
228+
#[stable(feature = "cow_box_error", since = "1.22.0")]
229+
impl<'a> From<Cow<'a, str>> for Box<Error> {
230+
fn from(err: Cow<'a, str>) -> Box<Error> {
231+
From::from(String::from(err))
232+
}
233+
}
234+
220235
#[unstable(feature = "never_type_impls", issue = "35121")]
221236
impl Error for ! {
222237
fn description(&self) -> &str { *self }

0 commit comments

Comments
 (0)