Type Alias mesh_channel::error::RemoteResult
source · pub type RemoteResult<T> = Result<T, RemoteError>;
Expand description
Alias for a Result
with a RemoteError
error.
Aliased Type§
enum RemoteResult<T> {
Ok(T),
Err(RemoteError),
}