pub type OpSyncResult<T> = Result<T, OpSyncError>;Expand description
Shorthand for a Result where the error type is an OpSyncError.
Aliased Type§
pub enum OpSyncResult<T> {
Ok(T),
Err(OpSyncError),
}pub type OpSyncResult<T> = Result<T, OpSyncError>;Shorthand for a Result where the error type is an OpSyncError.
pub enum OpSyncResult<T> {
Ok(T),
Err(OpSyncError),
}