RefreshResult

Type Alias RefreshResult 

Source
pub type RefreshResult = Result<(), Box<dyn Error + Send + Sync>>;
Expand description

Result type for refresh operations.

Aliased Type§

pub enum RefreshResult {
    Ok(()),
    Err(Box<dyn Error + Send + Sync>),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(Box<dyn Error + Send + Sync>)

Contains the error value