#![allow(dead_code)] use thiserror::Error; #[derive(Debug, Error)] pub enum ExampleError { #[error("charge error")] ChargeError, } #[derive(Debug, Default)] pub struct Receipt(pub i32); #[derive(Debug, Default)] pub struct PizzaOrder(pub i32); #[derive(Debug, Default)] pub struct CreditCard { pub crc: String, pub expiry_month: u16, pub expiry_year: u16, } // ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ // ┃ Traits ┃ // ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ // These traits are going to be implemented as part of the tests. pub trait BillingService: Send + Sync { fn charge_order( &self, order: PizzaOrder, creditcard: &CreditCard, ) -> Result; } pub trait CreditCardProcessor: Send + Sync { fn charge( &self, creditcard: &CreditCard, amount: i32, ) -> Result; } pub trait TransactionLog: Send + Sync { fn log_charge(&self, amount: i32); fn log_error(&self, err: &ExampleError); }