remove impl const

This commit is contained in:
2025-12-03 10:44:07 -05:00
parent 75092e7d9f
commit 53cb50316e
5 changed files with 31 additions and 15 deletions

View File

@@ -51,7 +51,7 @@ pub struct AppSettings {
pub plot_width: usize,
}
impl const Default for AppSettings {
impl Default for AppSettings {
/// Default implementation of `AppSettings`, this is how the application starts up
fn default() -> Self {
Self {
@@ -84,7 +84,7 @@ struct Opened {
pub welcome: bool,
}
impl const Default for Opened {
impl Default for Opened {
fn default() -> Opened {
Self {
help: false,