mirror of
https://github.com/edera-dev/sprout.git
synced 2026-02-05 00:30:17 +00:00
11 lines
285 B
Rust
11 lines
285 B
Rust
use alloc::string::String;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
/// The configuration of the print action.
|
|
#[derive(Serialize, Deserialize, Debug, Default, Clone)]
|
|
pub struct PrintConfiguration {
|
|
/// The text to print to the console.
|
|
#[serde(default)]
|
|
pub text: String,
|
|
}
|