SecretResult

Type Alias SecretResult 

Source
pub type SecretResult = Result<Vec<(Cidr, Vec<u8>)>, BoxError>;

Aliased Type§

pub enum SecretResult {
    Ok(Vec<(Cidr, Vec<u8>)>),
    Err(Box<dyn Error + Send + Sync>),
}

Variants§

§1.0.0

Ok(Vec<(Cidr, Vec<u8>)>)

Contains the success value

§1.0.0

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

Contains the error value