Apply rustfmt to stdio transport guard

Match the rustfmt shape reported by the PR20664 Format / etc CI job after boxing the retained stdio transport guard.

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
starr-openai
2026-05-06 14:43:47 -07:00
parent dd1c9ff41a
commit e58b331d8f

View File

@@ -26,9 +26,7 @@ pub(crate) enum JsonRpcConnectionEvent {
pub(crate) enum JsonRpcTransport {
Plain,
Stdio {
_transport: Box<StdioTransport>,
},
Stdio { _transport: Box<StdioTransport> },
}
impl JsonRpcTransport {