Skip to main content

Conserves

Trait Conserves 

Source
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§

Source

fn ledger(&self) -> Ledger

What this is currently holding.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§