ploidy-core 0.12.1

IR and type graph for the Ploidy OpenAPI compiler
Documentation
1
2
3
4
5
6
7
8
9
use crate::parse::path::BadPath;

#[derive(Debug, thiserror::Error)]
pub enum IrError {
    #[error("can't generate code for an operation without an ID")]
    NoOperationId,
    #[error("operation has invalid path")]
    BadOperationPath(#[from] BadPath),
}