Fixed hide intermediate steps, such that header and body is of same length

This commit is contained in:
Martin Berg Alstad
2024-06-17 23:04:47 +02:00
parent bcf8b87f5f
commit 6df5152061
3 changed files with 64 additions and 8 deletions

View File

@ -20,8 +20,8 @@ pub struct TruthTableOptions {
pub sort: Sort,
#[serde(default)]
pub hide: Hide,
#[serde(default)]
pub hide_intermediate_steps: bool, // TODO: Implement hide intermediate steps
#[serde(default, deserialize_with = "deserialize_bool")]
pub hide_intermediate_steps: bool,
}
#[derive(Deserialize)]