1 2 3 4 5 6 7 8 9
//! Default trait implementation for DisplaySettings. use crate::widgets::markdown_widget::state::display_settings::DisplaySettings; impl Default for DisplaySettings { fn default() -> Self { Self::new() } }