pub type SyncResult<T> = Result<T, SyncError>;
Result type for sync operations.
pub enum SyncResult<T> { Ok(T), Err(SyncError), }
Contains the success value
Contains the error value