Type Alias ApiSchemaResult

Source
pub type ApiSchemaResult = Result<String, Vec<ApiSchemaError>>;
Expand description

The type returned when invoking api_schema

Aliased Type§

pub enum ApiSchemaResult {
    Ok(String),
    Err(Vec<ApiSchemaError>),
}

Variants§

§1.0.0

Ok(String)

Contains the success value

§1.0.0

Err(Vec<ApiSchemaError>)

Contains the error value