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