pub type RefreshResult = Result<(), Box<dyn Error + Send + Sync>>;
Result type for refresh operations.
pub enum RefreshResult { Ok(()), Err(Box<dyn Error + Send + Sync>), }
Contains the success value
Contains the error value