pub trait Conserves {
// Required method
fn ledger(&self) -> Ledger;
}Expand description
Something that can say what it is holding. Implemented by domains, and by anything else whose books are worth checking.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".