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