Skip to content

Commit a365661

Browse files
committed
Group structs and impls together
1 parent 6ca8407 commit a365661

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

crates/amalthea/src/fixtures/dummy_frontend.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ pub struct DummyFrontend {
3737
heartbeat_port: u16,
3838
}
3939

40+
pub struct ExecuteRequestOptions {
41+
pub allow_stdin: bool,
42+
}
43+
4044
impl DummyFrontend {
4145
pub fn new() -> Self {
4246
use rand::Rng;
@@ -382,10 +386,6 @@ impl DummyFrontend {
382386
}
383387
}
384388

385-
pub struct ExecuteRequestOptions {
386-
pub allow_stdin: bool,
387-
}
388-
389389
impl Default for ExecuteRequestOptions {
390390
fn default() -> Self {
391391
Self { allow_stdin: false }

0 commit comments

Comments
 (0)