Add a missing stable attribute

This commit is contained in:
Brian Anderson 2015-01-22 16:23:07 -08:00
parent d3c0bb416e
commit 47905f98ee
1 changed files with 1 additions and 0 deletions

View File

@ -103,6 +103,7 @@ pub trait Error {
#[stable(feature = "grandfathered", since = "1.0.0")]
pub trait FromError<E> {
/// Perform the conversion.
#[stable(feature = "grandfathered", since = "1.0.0")]
fn from_error(err: E) -> Self;
}