Struct forest_actor::ActorError[][src]

pub struct ActorError { /* fields omitted */ }

The error type that gets returned by actor method calls.

Implementations

impl ActorError[src]

pub fn new(exit_code: ExitCode, msg: String) -> ActorError[src]

pub fn new_fatal(msg: String) -> ActorError[src]

pub fn is_fatal(&self) -> bool[src]

Returns true if error is fatal.

pub fn exit_code(&self) -> ExitCode[src]

Returns the exit code of the error.

pub fn is_ok(&self) -> bool[src]

Returns true when the exit code is Ok.

pub fn msg(&self) -> &str[src]

Error message of the actor error.

pub fn wrap(self, msg: impl AsRef<str>) -> ActorError[src]

Prefix error message with a string message.

Trait Implementations

impl Clone for ActorError[src]

impl Debug for ActorError[src]

impl Display for ActorError[src]

impl Error for ActorError[src]

impl From<Error> for ActorError[src]

impl From<Error> for ActorError[src]

impl PartialEq<ActorError> for ActorError[src]

impl StructuralPartialEq for ActorError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,