pub trait Budget {
// Required methods
fn deposit(&self);
fn withdraw(&self) -> bool;
}
Expand description
For more info about Budget
, please see the module-level documentation.
pub trait Budget {
// Required methods
fn deposit(&self);
fn withdraw(&self) -> bool;
}
For more info about Budget
, please see the module-level documentation.