[−][src]Struct amethyst::Error
The error type used by Amethyst.
Wraps error diagnostics like messages and other errors, and keeps track of causal chains and backtraces.
Methods
impl Error
[src]
pub fn new<E>(error: E) -> Error where
E: 'static + Error + Send + Sync,
[src]
E: 'static + Error + Send + Sync,
Default constructor for our error types.
Wraps anything that is an error in a box.
pub fn with_source<S>(self, source: S) -> Error where
S: 'static + Into<Error>,
[src]
S: 'static + Into<Error>,
Update the source of an error.
pub fn from_string<M>(message: M) -> Error where
M: Into<Cow<'static, str>>,
[src]
M: Into<Cow<'static, str>>,
Construct a new error from a string.
pub fn backtrace(&self) -> Option<&Backtrace>
[src]
Get backtrace.
pub fn source(&self) -> Option<&Error>
[src]
Get the source of the error.
Examples
The only way to set the source is through ResultExt
using
with_context
.
use amethyst_error::{Error, ResultExt}; use std::io; let e = io::Error::new(io::ErrorKind::Other, "wrapped"); let a = Error::new(e); let res = Result::Err::<(), Error>(a).with_context(|_| Error::from_string("top")); let e = res.expect_err("no error"); assert_eq!("top", e.to_string()); assert_eq!("wrapped", e.source().expect("no source").to_string());
pub fn causes(&self) -> Causes
[src]
Iterate over all causes, including this one.
Examples
use amethyst_error::{Error, ResultExt}; fn failing_function() -> Result<(), Error> { Err(Error::from_string("failing")) } fn other_function() -> Result<(), Error> { Ok(failing_function().with_context(|_| Error::from_string("other"))?) } let e = other_function().expect_err("no error"); let messages = e.causes().map(|e| e.to_string()).collect::<Vec<_>>(); assert_eq!(vec!["other", "failing"], messages);
pub fn as_error(&self) -> &(dyn Error + 'static)
[src]
Access the internal std::error::Error
as a trait.
This can be useful for integrating with systems that operate on std::error::Error
.
Warning: This erases most diagnostics in favor of returning only the top error.
std::error::Error
is expanded further.
Trait Implementations
impl<T> From<T> for Error where
T: 'static + Error + Send + Sync,
[src]
T: 'static + Error + Send + Sync,
Blanket implementation.
Encapsulate errors which are Send + Sync.
impl Display for Error
[src]
impl Debug for Error
[src]
Auto Trait Implementations
impl Unpin for Error
impl Sync for Error
impl Send for Error
impl !UnwindSafe for Error
impl !RefUnwindSafe for Error
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
[src]
SS: SubsetOf<SP>,
fn to_subset(&self) -> Option<SS>
[src]
fn is_in_subset(&self) -> bool
[src]
unsafe fn to_subset_unchecked(&self) -> SS
[src]
fn from_subset(element: &SS) -> SP
[src]
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<T> Resource for T where
T: Any + Send + Sync,
[src]
T: Any + Send + Sync,
impl<T> Any for T where
T: Any,
[src]
T: Any,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Event for T where
T: Send + Sync + 'static,
[src]
T: Send + Sync + 'static,
impl<T> Erased for T
[src]
impl<T> Supports<T> for T
[src]
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
D: AdaptFrom<S, Swp, Dwp, T>,
Dwp: WhitePoint,
Swp: WhitePoint,
T: Component + Float,
[src]
D: AdaptFrom<S, Swp, Dwp, T>,
Dwp: WhitePoint,
Swp: WhitePoint,
T: Component + Float,
fn adapt_into_using<M>(self, method: M) -> D where
M: TransformMatrix<Swp, Dwp, T>,
[src]
M: TransformMatrix<Swp, Dwp, T>,
fn adapt_into(self) -> D
[src]
Convert the source color to the destination color using the bradford method by default Read more
impl<T> SetParameter for T
[src]
fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
T: Parameter<Self>,
[src]
T: Parameter<Self>,
Sets value
as a parameter of self
.
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,