Merge branch 'master' into rs/issue-281/ethernet-dos

This commit is contained in:
Ryan Summers 2021-06-09 11:38:40 +02:00 committed by GitHub
commit a6dbd18574
1 changed files with 3 additions and 0 deletions

View File

@ -160,6 +160,9 @@ pub enum Error {
Dropped,
}
#[cfg(feature = "std")]
impl std::error::Error for Error {}
/// The result type for the networking stack.
pub type Result<T> = core::result::Result<T, Error>;