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