pub trait ClientTaskGetResult<E: RpcErrCodec> {
// Required method
fn get_result(&self) -> Result<(), &RpcError<E>>;
}Expand description
client_task_enum should impl this for user, not used by framework
Required Methods§
Sourcefn get_result(&self) -> Result<(), &RpcError<E>>
fn get_result(&self) -> Result<(), &RpcError<E>>
Check the result of the task
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".