MCPcopy Create free account
hub / github.com/derekbanas/Rust-Tutorial / Bank

Class Bank

main.rs:1020–1022  ·  view source on GitHub ↗

Bank struct just contains current balance

Source from the content-addressed store, hash-verified

1018
1019 // Bank struct just contains current balance
1020 pub struct Bank {
1021 balance: f32
1022 }
1023
1024 // Allows for withdrawing money
1025 // Pass a mutable reference so bank can be used elsewhere

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected