pub trait ExplainAccount {
// Required method
fn explain(&self) -> AccountExplain;
}Expand description
Trait for accounts that can produce a structured explanation.
Required Methods§
Sourcefn explain(&self) -> AccountExplain
fn explain(&self) -> AccountExplain
Generate a human-readable explanation of this account.