pub type Result<T> = Result<T, JsonnetError>;
Expand description
Result type for Jsonnet operations
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(JsonnetError),
}
pub type Result<T> = Result<T, JsonnetError>;
Result type for Jsonnet operations
pub enum Result<T> {
Ok(T),
Err(JsonnetError),
}