chore(codegen): implemented Eq for OpenApiSchema

This commit is contained in:
pyrite 2025-05-27 19:27:59 +02:00
parent c8bdcc81c4
commit 6aaa06f501
Signed by: pyrite
GPG key ID: 7F1BA9170CD35D15
4 changed files with 33 additions and 4 deletions

View file

@ -79,7 +79,7 @@ pub struct OpenApiPathBody<'a> {
pub operation_id: Option<OperationId>,
}
#[derive(Debug, Clone, Deserialize)]
#[derive(Debug, Clone, Deserialize, PartialEq, Eq)]
pub struct OpenApiPath<'a> {
#[serde(borrow)]
pub get: OpenApiPathBody<'a>,