pub trait DebControl {
// Required methods
fn from_paragraph(p: &Paragraph<'_>) -> Result<Self, &'static str>
where Self: Sized;
fn to_paragraph(&self) -> Paragraph<'_>;
}
pub trait DebControl {
// Required methods
fn from_paragraph(p: &Paragraph<'_>) -> Result<Self, &'static str>
where Self: Sized;
fn to_paragraph(&self) -> Paragraph<'_>;
}