af-core 0.1.8

A core library and async runtime for Rust applications.
Documentation
// Copyright © 2021 Alexandra Frydl
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

//! Basic error handling.

pub use std::error::Error;
pub use thiserror::Error;

use crate::prelude::*;

/// An error representing a panic.
#[derive(Error, From)]
pub struct Panic {
  /// The panic value.
  pub value: Box<dyn Any + Send>,
}

impl Panic {
  /// Returns a reference to the panic value if it is a string.
  pub fn value_str(&self) -> Option<&str> {
    if let Some(string) = self.value.downcast_ref::<String>() {
      Some(string)
    } else if let Some(string) = self.value.downcast_ref::<&'static str>() {
      Some(string)
    } else {
      None
    }
  }
}

impl Debug for Panic {
  fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
    write!(f, "PanicError")?;

    if let Some(value) = self.value_str() {
      write!(f, "({:?})", value)?;
    }

    Ok(())
  }
}

impl Display for Panic {
  fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
    write!(f, "Panicked")?;

    if let Some(value) = self.value_str() {
      write!(f, " with `{}`", value)?;
    }

    write!(f, ".")
  }
}