pub trait IntoUnexpectedExit {
type Ret;
// Required methods
fn into_unexpected_exit(self, actor_id: impl Into<ActorId>) -> Self::Ret;
fn into_unexpected_exit_with<__F, __ACTOR_ID>(self, f: __F) -> Self::Ret
where __F: FnOnce() -> __ACTOR_ID,
__ACTOR_ID: Into<ActorId>;
}
Expand description
Extension trait for converting StreamError
into ErrorKind::UnexpectedExit
with the given context.
Required Associated Types§
Required Methods§
Sourcefn into_unexpected_exit(self, actor_id: impl Into<ActorId>) -> Self::Ret
fn into_unexpected_exit(self, actor_id: impl Into<ActorId>) -> Self::Ret
Converts StreamError
into ErrorKind::UnexpectedExit
with the given context.
Sourcefn into_unexpected_exit_with<__F, __ACTOR_ID>(self, f: __F) -> Self::Ret
fn into_unexpected_exit_with<__F, __ACTOR_ID>(self, f: __F) -> Self::Ret
Converts StreamError
into ErrorKind::UnexpectedExit
with the context returned by the given function.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementations on Foreign Types§
Source§impl<__T> IntoUnexpectedExit for Result<__T, StreamError>
impl<__T> IntoUnexpectedExit for Result<__T, StreamError>
Source§fn into_unexpected_exit(self, actor_id: impl Into<ActorId>) -> Self::Ret
fn into_unexpected_exit(self, actor_id: impl Into<ActorId>) -> Self::Ret
Converts StreamError
into ErrorKind::UnexpectedExit
with the given context.
Source§fn into_unexpected_exit_with<__F, __ACTOR_ID>(self, f: __F) -> Self::Ret
fn into_unexpected_exit_with<__F, __ACTOR_ID>(self, f: __F) -> Self::Ret
Converts StreamError
into ErrorKind::UnexpectedExit
with the context returned by the given function.