pub trait IsActorResult: Sealed {
type Error;
// Required method
fn into_result(self) -> Result<Infallible, Self::Error>;
}Expand description
Macro helper to allow actors to return either a Result type or Infallible (and eventually !).
Required Associated Types§
Required Methods§
Sourcefn into_result(self) -> Result<Infallible, Self::Error>
fn into_result(self) -> Result<Infallible, Self::Error>
Convert the result into an actual Result value.